:select => 'contents.*, comment_counts.count AS comment_count',
:from => "contents, (SELECT feedback.article_id AS article_id, COUNT(feedback.id) as count FROM feedback WHERE feedback.state IN ('presumed_ham', 'ham') GROUP BY feedback.article_id ORDER BY count DESC LIMIT 9) AS comment_counts",
:conditions => ['comment_counts.article_id = contents.id AND published = ?', true],
2 version = @typo_version ? @typo_version.split('.') : TYPO_VERSION.to_s.split('.')
2 if version[0].to_i > TYPO_MAJOR.to_i
flash.now[:error] = _("You are late from at least one major version of Typo. You should upgrade immediately. Download and install %s", "<a href='http://typosphere.org/stable.tgz'>#{_("the latest Typo version")}</a>").html_safe
2 elsif version[1].to_i > TYPO_SUB.to_i
flash.now[:warning] = _("There's a new version of Typo available which may contain important bug fixes. Why don't you upgrade to %s ?", "<a href='http://typosphere.org/stable.tgz'>#{_("the latest Typo version")}</a>").html_safe
2 elsif version[2].to_i > TYPO_MINOR.to_i
flash.now[:notice] = _("There's a new version of Typo available. Why don't you upgrade to %s ?", "<a href='http://typosphere.org/stable.tgz'>#{_("the latest Typo version")}</a>").html_safe
end
end
2 def get_typo_version
2 url = "http://blog.typosphere.org/version.txt"
2 open(url) do |http|
@typo_version = http.read[0..5]
end
rescue
2 @typo_version = nil
end
2 def typo_dev
2 url = "http://blog.typosphere.org/articles.rss"
2 open(url) do |http|
@typo_links = parse_rss(http.read)[0..4]
end
rescue
2 @typo_links = nil
end
2 private
2 class RssItem < Struct.new(:link, :title, :description, :description_link, :date, :author)
2 def to_s; title end
end
2 def parse_rss(body)
xml = REXML::Document.new(body)
items = []
link = REXML::XPath.match(xml, "//channel/link/text()").first.value rescue ""
title = REXML::XPath.match(xml, "//channel/title/text()").first.value rescue ""
flash[:error] = _("It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually")
end
end
2 def set_active
# Get all available plugins
klass_for = available.inject({}) do |hash, klass|
hash.merge({ klass.short_name => klass })
end
# Get all already active plugins
activemap = flash_sidebars.inject({}) do |h, sb_id|
sb = Sidebar.find(sb_id.to_i)
sb ? h.merge(sb.html_id => sb_id) : h
end
# Figure out which plugins are referenced by the params[:active] array and
# lay them out in a easy accessible sequential array
flash[:sidebars] = params[:active].map do |name|
if klass_for.has_key?(name)
new_sidebar_id = klass_for[name].create.id
@new_item = Sidebar.find(new_sidebar_id)
new_sidebar_id
elsif activemap.has_key?(name)
activemap[name]
end
end.compact
end
2 def remove
flash[:sidebars] = flash_sidebars.reject do |sb_id|
sb_id == params[:id].to_i
end
@element_to_remove = params[:element]
end
2 def publish
Sidebar.transaction do
position = 0
params[:configure] ||= { }
# Crappy workaround to rails update_all bug with PgSQL / SQLite
ActiveRecord::Base.connection.execute("update sidebars set active_position=null")
flash_sidebars.each do |id|
sidebar = Sidebar.find(id)
sb_attribs = params[:configure][id.to_s] || {}
# If it's a checkbox and unchecked, convert the 0 to false
render :partial => 'availables', :object => available
end
2 def available
::Sidebar.available_sidebars
end
2 def flash_sidebars
unless flash[:sidebars]
begin
active = Sidebar.find(:all, :order => 'active_position ASC')
flash[:sidebars] = active.map {|sb| sb.id }
rescue => e
logger.error e
# Avoiding the view to crash
@active = []
flash[:error] = _("It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually")
end
end
flash[:sidebars]
end
2 helper_method :available
end
app/controllers/admin/tags_controller.rb
27.78 % covered
18 relevant lines.
5 lines covered and
13 lines missed.
# The '5 comments' link from the bottom of articles
2 def comments_link(article)
comment_count = article.published_comments.size
# FIXME Why using own pluralize metchod when the Localize._ provides the same funciotnality, but better? (by simply calling _('%d comments', comment_count) and using the en translation: l.store "%d comments", ["No nomments", "1 comment", "%d comments"])
2 setting :rss_description_text, :string, "<hr /><p><small>Original article writen by %author% and published on <a href='%blog_url%'>%blog_name%</a> | <a href='%permalink_url%'>direct link to this article</a> | If you are reading this article elsewhere than <a href='%blog_url%'>%blog_name%</a>, it has been illegally reproduced and without proper authorization.</small></p>"
logger.error "Unable to send notification of create user email: #{err.inspect}"
end
end
end
app/models/web_notifier.rb
100.0 % covered
4 relevant lines.
4 lines covered and
0 lines missed.
2class WebNotifier < ActiveRecord::Observer
2 observe Article
2 def after_save(article)
74 article.send_pings
end
end
lang/da_DK.rb
100.0 % covered
635 relevant lines.
635 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("da_DK") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", ""
2 l.store "complete", ""
2 l.store "File uploaded: ", ""
2 l.store "Unable to upload", ""
2 l.store "Metadata was successfully updated.", ""
2 l.store "Not all metadata was defined correctly.", ""
2 l.store "Content Type was successfully updated.", ""
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", ""
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Anuller"
2 l.store "Store", ""
2 l.store "Delete", "Slet"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", "Vælg venligst"
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "eller"
2 l.store "Save", "Gem"
2 l.store "Edit", "Rediger"
2 l.store "Show", ""
2 l.store "Published", "Offentliggjort"
2 l.store "Unpublished", "Ikke offentliggjort"
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "Tilbage til oversigten"
2 l.store "Name", "Navn"
2 l.store "Description", "Beskrivelse"
2 l.store "Tag", "Tag"
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", "ingen artikler"
2 l.store "1 article", "1 artikel"
2 l.store "%d articles", "%d artikler"
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", "%d kommentarer"
2 l.store "no comments", "ingen kommentarer"
2 l.store "1 comment", "1 kommentar"
2 l.store "no trackbacks", "ingen trackbacks"
2 l.store "1 trackback", "1 trackback"
2 l.store "%d trackbacks", "%d trackbacks"
# app/helpers/content_helper.rb
2 l.store "Posted in", "Offentliggjort i"
2 l.store "Tags", "Tags"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "No comments yet", "Der er ingen kommentarer endnu"
2 l.store "By %s on %s", "Fra %s på %s"
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", "Indkomne links"
2 l.store "No one made a link to you yet", "Der er endnu ingen der har linket til dig"
2 l.store " made a link to you saying ", " har lavet et link til dig, og skrevet "
2 l.store "You have no internet connection", "Du har ingen internet forbindelse"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "Dette sted giver dig en hurtig oversigt over, hvad der sker på din Typo blog, og hvad du kan gøre. Måske du ønsker at %s, %s eller %s."
2 l.store "update your profile or change your password", "opdatere din profil eller rette dit kodeord"
2 l.store "You can also do a bit of design, %s or %s.", "Du kan også tilpasse designet, %s eller %s."
2 l.store "change your blog presentation", "ændre din blogs udseende"
2 l.store "enable plugins", "tilføje plugins"
2 l.store "write a post", "skrive en artikel"
2 l.store "write a page", "skrive en side"
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "Mest populære"
2 l.store "Nothing to show yet", "Intet at vise endnu"
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", ""
2 l.store "No posts yet, why don't you start and write one", "Der er ingen artikler endnu, du kan evt. starte med at skrive en"
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", ""
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", ""
2 l.store "Comments filter", "Kommentarfilter"
2 l.store "Enable gravatars", "Vis gravatars"
2 l.store "Show your email address", "Vis din e-mail addresse"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo kan give dig besked, når nye artikler eller kommentarer er indsendt"
2 l.store "Source Email", "Afsender e-mail"
2 l.store "Email address used by Typo to send notifications", "E-mail adresse der bruges af Typo til at sende meddelelser"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots" #Need translate
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here" #Need translate
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Denne indstilling giver dig mulighed for at deaktivere Trackbacks for hver artikel i din blog. Det vil ikke fjerne eksisterende Trackbacks, men det vil forhindre yderligere forsøg på at tilføje Trackbacks overalt på din blog."
2 l.store "Set to 0 to never disable comments", "Sæt til 0 for at aldrig deaktivere kommentarer"
2 l.store "Max Links", "Max Links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them" #Need translate
2 l.store "Set to 0 to never reject comments", "Sæt til 0 for at aldrig forkaste kommentarer"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Din Blog"
2 l.store "Blog name", "Blog titel"
2 l.store "Blog subtitle", "Blog undertitel"
2 l.store "Blog URL", "Blogadresse"
2 l.store "Language", "Sprog"
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Vis"
2 l.store "articles on my homepage by default", "artikler på min hjemmeside som standard"
2 l.store "articles in my news feed by default", "artikler i min nyhedsfeed som standard"
2 l.store "Show full article on feed", "Vis hele artiklen i min feed"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", ""
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Når du udgiver artikler kan Typo sende trackbacks til de hjemmesider du linker til. Dette bør slåes fra for private blogs da det ellers kan lække privat information til hjemmesider du diskuterer. For offentlige blogs, er der ingen reel mening i at deaktivere dette."
2 l.store "URLs to ping automatically", "Webadresser der automatisk pinges"
2 l.store "your lattitude and longitude", "din breddegrad og længdegrad"
2 l.store "exemple", "for eksempel"
2 l.store "Write", "Skriv"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "Du har ikke installeret nogen plugins"
# app/views/admin/sidebar/_publish.html.erb
2 l.store "Changes published", "Ændringer er udgivet"
# app/views/admin/sidebar/_target.html.erb
2 l.store "Drag some plugins here to fill your sidebar", "Træk plugins herover for at fylde din sidebar"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Træk og slip for at ændre indholdsoversigten der vises på denne blog. Du kan fjerne elementer fra indholdsoversigten bare ved at klikke fjern. Ændringer gemmes med det samme, men ikke aktiveret, før du klikker på 'Offentliggør' knappen."
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Aktiv tema"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "display twitter on public profile", "Vis twitter på din profil"
2 l.store "Tell us more about you", "Fortæl lidt mere om dig"
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "Vil du virkelig slette brugeren"
2 l.store "Yes", ""
2 l.store "Users", ""
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "Rediger bruger"
# app/views/admin/users/index.html.erb
2 l.store "New User", "Ny bruger"
2 l.store "Comments", "Kommentarer"
2 l.store "State", ""
2 l.store "%s user", ""
# app/views/admin/users/new.html.erb
2 l.store "Add User", ""
# app/views/articles/_article.html.erb
2 l.store "Posted by", "Skrevet af"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "sagde"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Denne kommentar er blevet markeret som krævende godkendelse. Den vil ikke blive vist før forfatteren godkender den."
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Dit Navn"
2 l.store "Your email", "Din email"
2 l.store "Your message", "Din besked"
2 l.store "Comment Markup Help", "Hjælp med kommentar markup"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata" #Need translate
2 l.store "There are %d entries in the cache", "Der er %d objekter i cachen"
2 l.store "Things you can do", "Du kan udføre følgende ..."
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!","This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!" #Need translate
2 l.store "Upload a new Resource", "Upload en ny ressource"
2 l.store "Uploaded", "Uploaded"
2 l.store "User's articles", "Brugerens artikler"
2 l.store "View article on your blog", "Vis atikel på din blog"
2 l.store "View comment on your blog", "Vis kommentar på din blog"
2 l.store "View page on your blog", "Vis denne side på din blog"
2 l.store "Which settings group would you like to edit", "Hvilke indstillinger vil du gerne redigere"
2 l.store "Write a Page", "Skriv en side"
2 l.store "Write an Article", "Skriv en artikkel"
2 l.store "XML Syndication", "XML Syndikat"
2 l.store "You are now logged out of the system", "Du er nu logget af systemet"
2 l.store "You can add it to the following categories", "Du kan tilføje følgende kategorier"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Du kan slå feedback moderation til for hele bloggen. Hvis du gør dette kommer kommentarer og trackbacks først frem når du har godkendt dem"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript." #Need translate
2 l.store "add new", "tilføj ny"
2 l.store "by", "af"
2 l.store "log out", "log ud"
2 l.store "on", "på"
2 l.store "published", "udgivet"
2 l.store "seperate with spaces", "Adskil med mellemrum"
627 relevant lines.
627 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("de_DE") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", ""
2 l.store "complete", ""
2 l.store "File uploaded: ", ""
2 l.store "Unable to upload", ""
2 l.store "Metadata was successfully updated.", ""
2 l.store "Not all metadata was defined correctly.", ""
2 l.store "Content Type was successfully updated.", ""
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", ""
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Abbrechen"
2 l.store "Store", ""
2 l.store "Delete", "Löschen"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "oder"
2 l.store "Save", "Speichern"
2 l.store "Edit", "Bearbeiten"
2 l.store "Show", ""
2 l.store "Published", "Veröffentlicht"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "Zurück zur Übersicht"
2 l.store "Name", "Name"
2 l.store "Description", "Beschreibung"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "keine Kommentare"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "keine Trackbacks"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "Tags"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "Show your email address", "Ihre Email Adresse anzeigen"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo kann Sie benachrichtigen, wenn neue Artikel oder Kommentare angelegt werden"
2 l.store "Source Email", "Email Adresse"
2 l.store "Email address used by Typo to send notifications", "Email Adresse, die Typo beim Versenden von Benachrichtigungen verwenden soll"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Bei Aktivierung des Spamschutzes wird Typo sowohl die IP Adresse des Autors als auch den Inhalt seiner Veröffentlichung gegen lokale und entfernte Blacklisten vergleichen. Gute Abwehr von Spambots"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo kann (optional) den %s Spam-Filterdienst verwenden. Sie müssen sich dort registriert und einen API Key erhalten haben, bevor Sie diesen Dienst nutzen können. Wenn Sie einen solchen Key haben, geben Sie ihn hier ein"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Diese Option erlaubt es Ihnen, Trackbacks für alle Artikel im gesamten Blog zu deaktivieren. Dadurch werden zwar keine bereits existierenden Trackbacks entfernt, aber alle zukünftig irgendwo in Ihrem Blog eintreffenden Trackbacks werden abgewiesen."
2 l.store "Set to 0 to never disable comments", "Wert 0 bewirkt, dass die Möglichkeit für Kommentare immer bestehen bleibt"
2 l.store "Max Links", "Maximale Anzahl Links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo kann automatisch Kommentare und Trackbacks abweisen, die mehr als eine bestimmte Anzahl von Links enthalten"
2 l.store "Set to 0 to never reject comments", "Wert 0 bewirkt, dass Kommentare nie abgewiesen werden"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Mein Blog"
2 l.store "Blog name", "Blog Titel"
2 l.store "Blog subtitle", "Blog Untertitel"
2 l.store "Blog URL", "Blog Adresse"
2 l.store "Language", "Language" #Need translate
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Zeige"
2 l.store "articles on my homepage by default", "Artikel auf einmal auf meiner Homepage"
2 l.store "articles in my news feed by default", "Artikel auf einmal in meinen RSS News Feeds"
2 l.store "Show full article on feed", "Ganzen Artikel im RSS News Feed anzeigen"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", ""
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Typo kann Trackbacks zu anderen Websites schicken, zu denen Sie in veröffentlichten Artikeln verlinken. Das sollte für private Blogs deaktiviert werden, weil sonst nicht-öffentliche Informationen mit dem Trackback Ping nach außen zu den Seiten gehen, die Sie in Ihren Artikeln diskutieren. Für öffentliche Blogs jedoch besteht kein wirklicher Grund, das zu deaktivieren."
2 l.store "URLs to ping automatically", "Automatisch diese URLs anpingen"
2 l.store "Drag some plugins here to fill your sidebar", "Ziehen Sie Plugins hierher, um sie in die Seitenleiste aufzunehmen"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Verwenden Sie Drag&Drop, um die Einträge der Seitenleiste ihres Blogs zu ändern. Um Einträge zu löschen, klicken Sie auf 'remove'. Änderungen sind hier sofort sichtbar, werden aber erst permanent aktiviert, wenn Sie 'Änderungen veröffentlichen' klicken."
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Aktives Motiv"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Choose a theme", "Motiv auswählen"
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", ""
2 l.store "Password confirmation", ""
2 l.store "Profile", ""
2 l.store "User's status", ""
2 l.store "Active", ""
2 l.store "Inactive", ""
2 l.store "Profile Settings", ""
2 l.store "Firstname", ""
2 l.store "Lastname", ""
2 l.store "Nickname", ""
2 l.store "Editor", ""
2 l.store "Use simple editor", ""
2 l.store "Use visual rich editor", ""
2 l.store "Send notification messages via email", "Benachrichtigung via Email schicken"
2 l.store "Send notification messages when new articles are posted", "Benachrichtigung schicken, wenn neue Artikel veröffentlicht werden"
2 l.store "Send notification messages when comments are posted", "Benachrichtigung schicken, wenn neue Kommentare eintreffen"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Dieser Kommentar wurde für die Moderatorfreigabe markiert. Er wird erst nach Freigabe durch den Moderator in diesem Blog erscheinen"
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Mein Name"
2 l.store "Your email", "Meine Email"
2 l.store "Your message", "Meine Nachricht"
2 l.store "Comment Markup Help", "Hilfe zu Kommentar Markup"
2 l.store "Preview comment", "Kommentar Vorschau"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "Von"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Keine Artikel gefunden"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "will sagen"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Es gibt"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Einen Kommentar hinterlassen"
2 l.store "Trackbacks", ""
2 l.store "Use the following link to trackback from your own site", "Verwenden Sie den folgenden Link zur Rückverlinkung von Ihrer eigenen Seite"
2 l.store "RSS feed for this post", "RSS Feed für diesen Artikel"
2 l.store "trackback uri", "Trackback URI"
2 l.store "Comments are disabled", "Kommentare sind deaktiviert"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", ""
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "See help text for this filter", "Hilfe für diesen Filter"
2 l.store "Set iTunes metadata for this enclosure", "iTunes Metadaten für diesen Anhang festlegen"
2 l.store "Setting for channel", "Kanaloptionen"
2 l.store "Settings", "Einstellungen"
2 l.store "Show Help", "Hilfe"
2 l.store "Show this article", "Diesen Artikel anzeigen"
2 l.store "Show this category", "Kategorie anzeigen"
2 l.store "Show this comment", "Diesen Kommentar anzeigen"
2 l.store "Show this page", "Diese Seite anzeigen"
2 l.store "Show this pattern", "Muster anzeigen"
2 l.store "Show this user", "Diesen Benutzer anzeigen"
2 l.store "Spam Protection", "Spamschutz"
2 l.store "Spam protection", "Spamschutz"
2 l.store "String", "Zeichenkette"
2 l.store "Subtitle", "Untertitel"
2 l.store "Summary", "Zusammenfassung"
2 l.store "Text Filter Details", "Details zum Textfilter"
2 l.store "Text Filters", "Textfilter"
2 l.store "Textfilter", "Textfilter"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Folgende Einstellungen wirken als Voreinstellungen, wenn Sie einen Anhang mit iTunes Metadaten veröffentlichen"
2 l.store "There are %d entries in the cache", "Es sind %d Einträge im Cache"
2 l.store "Things you can do", "Folgendes können Sie tun ..."
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!","This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!" #Need translate
2 l.store "Upload a new File", "Eine neue Datei hochladen"
2 l.store "Upload a new Resource", "Eine neue Ressource hochladen"
2 l.store "Uploaded", "Upload beendet"
2 l.store "User's articles", "Artikel des Benutzers"
2 l.store "View article on your blog", "Artikel in Ihrem Blog anschauen"
2 l.store "View comment on your blog", "Kommentar in Ihrem Blog anschauen"
2 l.store "View page on your blog", "Seite in Ihrem Blog anschauen"
2 l.store "Which settings group would you like to edit", "Welche Einstellungsgruppe möchten Sie bearbeiten"
2 l.store "Write a Page", "Eine Seite schreiben"
2 l.store "Write an Article", "Einen Artikel schreiben"
2 l.store "XML Syndication", "XML Syndikat"
2 l.store "You are now logged out of the system", "Sie sind nun vom System abgemeldet"
2 l.store "You can add it to the following categories", "Sie können ihn zu den folgenden Kategorien hinzufügen"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Sie können die Moderation von Kommentaren auf der gesamten Website aktivieren. Dann erscheinen keine Kommentare oder Trackbacks in Ihrem Blog, die sie nicht überprüft haben"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Sie können optional non-Ajax Kommentare verbieten. Typo verwendet immer Ajax für die Übertragung von Kommentaren, sofern Javascript eingeschaltet ist. non-Ajax Kommentare stamme somit entweder von Spammern oder von Anwendern ohne aktiviertes Javascript."
2 l.store "by", "bei"
2 l.store "log out", "Abmelden"
2 l.store "on", "über"
2 l.store "seperate with spaces", "mit Leerzeichen trennen"
16 relevant lines.
16 lines covered and
0 lines missed.
2Localization.define('en_US') do |l|
2 l.store "Login successful", "Login successful"
2 l.store "da_DK", "Danish"
2 l.store "de_DE", "German"
2 l.store "en_US", "English (US)"
2 l.store "es_MX", "Spanish (Mexican)"
2 l.store "fr_FR", "French"
2 l.store "he_IL", "Hebrew"
2 l.store "it_IT", "Italian"
2 l.store "ja_JP", "Japanese"
2 l.store "lt_LT", "Lituanian"
2 l.store "nb_NO", "Norwegian"
2 l.store "nl_NL", "Nederland"
2 l.store "pl_PL", "Polish"
2 l.store "ro_RO", "Romanian"
2 l.store "zh_TW", "Chinese"
end
lang/es_MX.rb
100.0 % covered
620 relevant lines.
620 lines covered and
0 lines missed.
# coding: utf-8
# Translation by Edgar J. Suarez
2Localization.define("es_MX") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", ""
2 l.store "complete", ""
2 l.store "File uploaded: ", ""
2 l.store "Unable to upload", ""
2 l.store "Metadata was successfully updated.", ""
2 l.store "Not all metadata was defined correctly.", ""
2 l.store "Content Type was successfully updated.", ""
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", ""
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Cancelar"
2 l.store "Store", ""
2 l.store "Delete", "Eliminar"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "o"
2 l.store "Save", "Guardar"
2 l.store "Edit", "Editar"
2 l.store "Show", ""
2 l.store "Published", "Publicado"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", ""
2 l.store "Name", "Nombre"
2 l.store "Description", "Descripción"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "no hay comentarios"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "no hay trackbacks"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "Tags"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "Show your email address", "Mostrar tu dirección de email"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo puede notificarte cuando nuevos artículos o comentarios sean añadidos"
2 l.store "Source Email", "Email remitente"
2 l.store "Email address used by Typo to send notifications", "Dirección de email usada por Typo para enviar notificaciones"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Habilitando la protección anti-spam hará que typo compare la dirección IP del usuario así como el contenido de sus comentarios contra una lista negra remota o local. Es una buena defensa contra los robots de spam"
2 l.store "Akismet Key", "Clave de Akismet (API key)"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo puede (opcionalmente) usar el servicio anti-spam de %s. Necesitas registrarte en Akismet y obtener una API key antes de poder usar su servicio. Si tienes una clave de Akismet, introdúcela aquí"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Esta opción te permite deshabilitar trackbacks para cada artículo en tu blog. Esto no removerá trackbacks existentes, pero impedirá cualquier intento futuro para añadir una trackback en cualquier parte de tu blog."
2 l.store "Set to 0 to never disable comments", "Introducir 0 para nunca deshabilitar comentarios"
2 l.store "Max Links", "Máximo número de links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo rechazará automáticamente los comentarios y trackbacks que contengan más de un cierto número de links en ellos"
2 l.store "Set to 0 to never reject comments", "Introducir 0 para nunca rechazar comentarios"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Tu sitio"
2 l.store "Blog name", "Nombre del blog"
2 l.store "Blog subtitle", "Subtítulo del blog"
2 l.store "Blog URL", "URL del blog"
2 l.store "Language", "Idioma" #Need translate
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Mostrar"
2 l.store "articles on my homepage by default", "artículos en mi página de inicio por default"
2 l.store "articles in my news feed by default", "artículos en mi feed RSS"
2 l.store "Show full article on feed", "Mostrar artículo completo en el feed"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", ""
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "You are up to date!", "Estás al día!"
2 l.store "Update database now", "Actualizar la base de datos ahora"
2 l.store "may take a moment", "puede tomar un momento"
2 l.store "Database migration", "Migración de la base de datos"
2 l.store "yes", "sí"
2 l.store "no", "no"
# app/views/admin/settings/write.html.erb
2 l.store "Send trackbacks", "Enviar trackbacks"
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Cuando se publican artículos, Typo puede enviar trackbacks a sitios enlazados. Esto debería deshabilitarse para blogs privados para que no se escape información privada a sitios que estás comentando. Para blogs públicos, realmente no hay razón para deshabilitar esto."
2 l.store "URLs to ping automatically", "Enviar pings a URLs automáticamente"
2 l.store "Drag some plugins here to fill your sidebar", "Arrastra algunos plugins aquí para llenar tu barra lateral"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", ""
2 l.store "Available Items", "Items disponibles"
2 l.store "Active Sidebar items", "Items activos de la barra lateral"
2 l.store "Get more plugins", ""
2 l.store "Sidebar", ""
2 l.store "Publish changes", "Publicar cambios"
# app/views/admin/tags/_form.html.erb
2 l.store "Display name", "Nombre para mostrar"
# app/views/admin/tags/destroy.html.erb
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Tema activo"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Text Filter Details", "Detalles del filtro de texto"
2 l.store "Text Filters", "Filtros de Texto"
2 l.store "Textfilter", "Filtro de texto"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Las preferencias debajo son tomadas como predeterminadas cuando publicas contenido protegido con metadata de iTunes"
2 l.store "Things you can do", "Cosas que puedes hacer"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!", ""
2 l.store "Type", "Tipo"
2 l.store "Typo admin", "Administrar Typo"
2 l.store "Upload a new File", "Subir un nuevo archivo"
2 l.store "Upload a new Resource", "Subir un nuevo Recurso"
2 l.store "Uploaded", "Subido"
2 l.store "User's articles", "Artículos del usuario"
2 l.store "View article on your blog", "Ver artículo en tu blog"
2 l.store "View comment on your blog", "Ver comentario en tu blog"
2 l.store "View page on your blog", "Ver página en tu blog"
2 l.store "Which settings group would you like to edit", "¿Qué grupo de preferencias te gustaría editar?"
2 l.store "Write a Page", "Escribir una página"
2 l.store "Write an Article", "Escribir un arículo"
2 l.store "You are now logged out of the system", "Has salido del sistema"
2 l.store "You can add it to the following categories", "Puedes añadirlo a las siguientes categorías"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Puedes habilitar la moderación de comentarios y trackbacks. Si lo haces, ningún comentario o trackback aparecerá en tu blog hasta que lo hayas validado"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Puedes deshabilitar los comentarios sin Ajax. Typo usará siempre Ajax para añadir un comentario si Javascript está habilitado, así que los comentarios sin Ajax son de spammers o de usuarios sin Javascript."
2 l.store "by", "por"
2 l.store "on", "en"
2 l.store "seperate with spaces", "separar con espacios"
2 l.store "via email", "por email"
2 l.store "with %s Famfamfam iconset %s", "con el iconset %s de Famfamfam %s"
2 l.store "your blog", "tu blog"
end
lang/fr_FR.rb
100.0 % covered
732 relevant lines.
732 lines covered and
0 lines missed.
#coding: utf-8
2Localization.define("fr_FR") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", "Connexion réussie"
2 l.store "Login unsuccessful", "Échec de la connexion"
2 l.store "An email has been successfully sent to your address with your new password", "Un courrier vous a été envoyé avec votre nouveau mot de passe"
2 l.store "Oops, something wrong just happened", "Désolé, une erreur vient de se produire"
2 l.store "Recover your password", "Récupération d'un mot de passe perdu"
# app/controllers/admin/cache_controller.rb
2 l.store "Cache was successfully sweeped", "Le cache a été vidé avec succès"
2 l.store "Oops, something wrong happened. Cache could not be cleaned", "Oops, un problème s'est produit et le cache n'a pas pu être vidé correctement"
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", "La catégorie a été enregistrée avec succès"
2 l.store "Category could not be saved.", "La catégorie n'a pas pu être sauvée"
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", "Erreur, vous n'avez pas les droits requis pour effectuer cette action"
2 l.store "This article was deleted successfully", "Cet article a été supprimé avec succès"
2 l.store "Preview", "Prévisualiser "
2 l.store "Article was successfully created", "Cet article a été créé avec succès"
2 l.store "Article was successfully updated.", "Cet article a été mis à jour avec succès"
# app/controllers/admin/dashboard_controller.rb
2 l.store "You are late from at least one major version of Typo. You should upgrade immediately. Download and install %s", "Vous avez au moins une version majeure de Typo de retard. Vous devriez immédiatement vous mettre à jour. Téléchargez et installez %s"
2 l.store "the latest Typo version", "la dernière version de Typo"
2 l.store "There's a new version of Typo available which may contain important bug fixes. Why don't you upgrade to %s ?", "Une nouvelle version de Typo est disponible. Celle-ci contient probablement d'importants correctifs. Pourquoi ne téléchargeriez-vous pas %s"
2 l.store "There's a new version of Typo available. Why don't you upgrade to %s ?", "Une nouvelle version de Typo est disponible. Pouquoi n'installeriez-vous pas %s"
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", "Supprimé"
2 l.store "Not found", "Introuvable"
2 l.store "Deleted %d item(s)", "%d commentaires ont été supprimés"
2 l.store "Marked %d item(s) as Ham", "%d commentaires ont été validés"
2 l.store "Marked %d item(s) as Spam", "%d commentaires ont été marqués comme spam"
2 l.store "Confirmed classification of %s item(s)", "La classification de %d commentaires a été validée"
2 l.store "Not implemented", "Non implémenté"
2 l.store "All spam have been deleted", "Tout le spam a été supprimé"
2 l.store "Comment was successfully created.", "Commentaire créé avec succès."
2 l.store "Comment was successfully updated.", "Commentaire mis à jour avec succès."
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", "Cette page a été créée avec succès"
2 l.store "Page was successfully updated.", "Cette page a été mise à jour avec succès"
# app/controllers/admin/post_types_controller.rb
2 l.store "Post Type was successfully saved.", "Le type d'article a été sauvé avec succès"
2 l.store "Post Type could not be saved.", "Le type d'article n'a pas pu être sauvé"
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", "L'utilisateur a été mis à jour avec succès."
# app/controllers/admin/redirects_controller.rb
2 l.store "Redirection was successfully deleted.", "La redirection a été supprimée avec succès."
2 l.store "Redirection was successfully saved.", "La redirection a été enregistrée avec succès."
2 l.store "Redirection could not be saved.", "La redirection n'a pas pu être enregistrée."
# app/controllers/admin/resources_controller.rb
2 l.store "complete", "fini"
2 l.store "File uploaded: ", "Fichier envoyé: "
2 l.store "Unable to upload", "impossible d'envoyer"
2 l.store "Metadata was successfully updated.", "Les métadonnées ont été mises à jour avec succès."
2 l.store "Not all metadata was defined correctly.", "Quelques métadonnées n'ont pas été définies correctement."
# app/controllers/admin/seo_controller.rb
2 l.store "config updated.", "Configuration mise à jour."
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", "SVP vérifiez et enregistrez votre configuration avant de continuer"
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", "Une erreur s'est produite. Un ou plusieurs plugins sont probablement manquants ou en erreur. Peut-être devriez-vous les supprimer ou les réinstaller"
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", "Le label a été mis à jour avec succès"
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", "Le thème a été changé avec succès"
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", "L'utilisateur a été créé avec succès."
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", "Aucun article n'a été trouvé"
# app/controllers/grouping_controller.rb
2 l.store "page", "page"
# app/helpers/accounts_helper.rb
2 l.store "Create an account", "Créer un compte"
2 l.store "I've lost my password", "J'ai perdu mon mot de passe"
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Annuler"
2 l.store "Store", "Stocker"
2 l.store "delete", "supprimer"
2 l.store "Delete content", "Supprimer le contenu"
2 l.store "There are no %s yet. Why don't you start and create one?", "Il n'y a pas encore de %s, pourquoi ne pas en créer un ? "
2 l.store "Save", "Sauver"
2 l.store "or", "ou"
2 l.store "Short url:", ""
2 l.store "Edit", "Éditer"
2 l.store "Delete", "Supprimer"
2 l.store "Show", "Affichage"
2 l.store "Published", "Publié"
2 l.store "Draft", ""
2 l.store "Withdrawn", ""
2 l.store "Publication pending", ""
2 l.store "Show help on Typo macros", "Afficher l'aide sur les macros Typo"
2 l.store "Update settings", "Mettre les paramètres à jour"
2 l.store "Back to list", ""
2 l.store "Name", "Titre"
2 l.store "Description", "Description"
2 l.store "Tag", "Label"
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", "aucun article"
2 l.store "1 article", "1 article"
2 l.store "%d articles", "%d articles"
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", "Supprimer ce brouillon"
2 l.store "Article type", ""
2 l.store "Default", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", "Afficher le fil"
2 l.store "Flag as %s", "Marquer comme %s"
# app/helpers/application_helper.rb
2 l.store "%%d. %%b", ""
2 l.store "Are you sure you want to delete this %s?", ""
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%d comments", "%d commentaires"
2 l.store "no comments", "aucun commentaire"
2 l.store "1 comment", "1 commentaire"
2 l.store "no trackbacks", "aucun rétrolien"
2 l.store "1 trackback", "1 rétrolien"
2 l.store "%d trackbacks", "%d rétroliens"
2 l.store "at", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Ne peut pas se terminer par .rss ou .atom. Cette extension est réservée aux flux de syndication"
# app/models/post_type.rb
2 l.store "This article type already exists", ""
# app/views/accounts/login.html.erb
2 l.store "Login", "Identifiant"
2 l.store "password", "Mot de passe"
2 l.store "Remember me", "Rester connecté"
# app/views/accounts/recover_password.html.erb
2 l.store "Reset my password", "Me renvoyer un mot de passe"
2 l.store "Username or email", "Identifiant ou email"
# app/views/accounts/signup.html.erb
2 l.store "Username", "Identifiant"
2 l.store "Email", "Email"
2 l.store "Signup", "S'inscrire"
# app/views/admin/cache/index.html.erb
2 l.store "To save resources Typo caches content in static files. Cache is cleared each time something gets published. You may however want to clear the cache by yourself", "Afin d'économiser des ressources, Typo génère des fichiers statiques avec votre contenu. Ces fichiers sont supprimés lors d'une nouvelle publication. Vous pouvez cependant les effacer vous même."
2 l.store "There are currently %d files in cache for a total amount of %d Kb", "Il y a actuellement %d fichiers en cache pour un total de %d kilo octets."
2 l.store "Sweep cache", "Vider le cache"
2 l.store "Cache", "Cache"
# app/views/admin/categories/new.html.erb
2 l.store "Categories", "Catégories"
2 l.store "Keywords", "Mots clés"
2 l.store "Permalink", "Lien permanent"
2 l.store "Your category slug. Leave empty if you don't know what to put here", ""
2 l.store "Title", "Titre"
# app/views/admin/categories/new.js.erb
2 l.store "%s Category", "%s catégories"
2 l.store "close", ""
# app/views/admin/content/_attachment.html.erb
2 l.store "Remove", "Supprimer"
2 l.store "Currently this article has the following resources", "Les fichiers suivants sont actuellement liés à ce billet"
2 l.store "You can associate the following resources", "Vous pouvez y lier les fichiers suivants"
2 l.store "Add Another Attachment", "Ajouter une autre pièce jointe"
# app/views/admin/content/_categories.html.erb
2 l.store "New Category", "Nouvelle catégorie"
# app/views/admin/content/_form.html.erb
2 l.store "Publish settings", "Paramètres de publication"
2 l.store "Status:", ""
2 l.store "Allow trackbacks", "Autoriser les rétroliens"
2 l.store "Allow comments", "Autoriser les commentaires"
2 l.store "Publish <strong>now</strong>", ""
2 l.store "Visibility:", ""
2 l.store "Password:", "Mot de passe"
2 l.store "Permalink:", ""
2 l.store "Article filter", "Mise en forme des billets"
2 l.store "Publish", "Publier"
2 l.store "Tags", "Labels"
2 l.store "Excerpt", "Extrait"
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", "Les résumés vous permettent d'afficher un texte descriptif de votre article à la place de ce dernier sur la page d'accueil de votre blog"
2 l.store "Uploads", "Pièces jointes"
2 l.store "Save as draft", "Sauver comme brouillon"
# app/views/admin/content/index.html.erb
2 l.store "New Article", "Nouvel article"
2 l.store "Search", "Chercher"
2 l.store "All articles", ""
2 l.store "Drafts", "Brouillons"
2 l.store "Filter", "Filtrer"
2 l.store "Author", "Auteur"
2 l.store "Date", "Date"
2 l.store "Feedback", "Commentaires"
2 l.store "Manage articles", "Gestion des articles"
2 l.store "No comments yet", "Aucun commentaire pour l'instant"
2 l.store "By", "Par"
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", "Liens entrants"
2 l.store "No one made a link to you yet", "Personne n'a fait de lien vers votre blog"
2 l.store "made a link to you on", ""
2 l.store "You have no internet connection", "Vous n'avez pas de connexion à internet"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "Voici un rapide aperçu de ce que peut faire votre blog Typo. Peux-être voulez vous %s, %s ou %s"
2 l.store "update your profile or change your password", "mettre votre profil à jour ou changer votre mot de passe"
2 l.store "You can also do a bit of design, %s or %s.", "Vous pouvez également faire un peu de personnalisation, %s, %s"
2 l.store "change your blog presentation", "changer l'apparence de votre blog"
2 l.store "enable plugins", "activer des plugins"
2 l.store "If you need help, %s. You can also %s to customize your Typo blog.", ""
2 l.store "write a post", "écrire un article"
2 l.store "write a page", "publier une page statique"
2 l.store "download some plugins", "installer des plugins"
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "Billets les plus populaires"
2 l.store "Nothing to show yet", "Rien à afficher pour l'instant"
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", "Derniers articles"
2 l.store "No posts yet, why don't you start and write one", "Vous n'avez encore écrit aucun article, pourquoi ne pas commencer par là"
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", "Dernières nouvelles du blog officiel de Typo"
2 l.store "Oh no, nothing new", "Non, rien de nouveau"
# app/views/admin/dashboard/_welcome.html.erb
2 l.store "Welcome back, %s!", "Bienvenue, %s !"
2 l.store "%d articles and %d comments were posted since your last connexion", "Depuis votre dernière connexion, %d articles et %d commentaires ont été publiés"
2 l.store "Total posts:", "Nombre total d'articles :"
2 l.store "Your posts:", "Vos articles :"
2 l.store "Categories:", ""
2 l.store "Total comments:", "Nombre total de commentaires :"
2 l.store "Spam comments:", "Nombre total de spam :"
2 l.store "In your spam queue:", "En attente de modération :"
# app/views/admin/feedback/_button.html.erb
2 l.store "Select action", "Choisir de..."
2 l.store "Delete Checked Items", "Supprimer les commentaires sélectionnés"
2 l.store "Delete all spam", "Supprimer tout le spam"
2 l.store "Mark Checked Items as Spam", "Marquer ces commentaires comme du spam"
2 l.store "Mark Checked Items as Ham", "Valider ces commentaires"
2 l.store "Submit", "Envoyer"
# app/views/admin/feedback/_spam.html.erb
2 l.store "This comment by <strong>%s</strong> was flagged as spam, %s?", "Ce commentaire de <strong>%s</strong> a été marqué comme spam, %s ?"
# app/views/admin/feedback/article.html.erb
2 l.store "Comments for %s", "Commentaire sur %s"
2 l.store "Add a comment", "Ajouter un commentaire"
2 l.store "Status", "État"
2 l.store "Comment Author", "Auteur du commentaire"
2 l.store "Comment", "Commentaire"
2 l.store "Url", "Site"
# app/views/admin/feedback/index.html.erb
2 l.store "All", ""
2 l.store "Unapproved comments", "Commentaires non validés"
2 l.store "Ham", "Désirable"
2 l.store "Spam", "Spam"
2 l.store "Presumed ham", ""
2 l.store "Presumed spam", ""
2 l.store "Article", "Article"
2 l.store "Select all", ""
# app/views/admin/pages/_form.html.erb
2 l.store "Online", "En ligne"
2 l.store "Page settings", "Paramètres de la page"
2 l.store "Permanent link", "Lien permanent"
# app/views/admin/pages/index.html.erb
2 l.store "New Page", "Nouvelle page"
2 l.store "Manage pages", "Administrer les pages"
# app/views/admin/post_types/new.html.erb
2 l.store "Post Types", ""
2 l.store "Template name", ""
2 l.store "Typo default post type", ""
2 l.store "The template name is the filename Typo will look for when calling an article of that type. It should be in your theme under views/articles/template name.html.erb", ""
# app/views/admin/profiles/index.html.erb
2 l.store "Your profile", "Votre profil"
# app/views/admin/redirects/new.html.erb
2 l.store "Redirects", ""
2 l.store "From", "De"
2 l.store "Leave empty to shorten a link", "Laissez vide pour créer un lien court"
2 l.store "To", "Vers"
# app/views/admin/resources/_pages.html.erb
2 l.store "Previous page", "Page précédente"
2 l.store "Next page", "Page suivante"
# app/views/admin/resources/_upload.html.erb
2 l.store "Upload a File to your Site", "Envoyer un fichier sur votre site"
2 l.store "Upload", "Ajouter un fichier joint"
# app/views/admin/resources/destroy.html.erb
2 l.store "Are you sure you want to delete this file", "Êtes-vous certain de vouloir supprimer ce fichier"
2 l.store "Delete this file from the webserver?", "Supprimer complètement ce fichier du site ?"
2 l.store "File Uploads", "Ajout de fichiers"
# app/views/admin/resources/index.html.erb
2 l.store "Filename", "Fichier"
2 l.store "Content Type", "Type de contenu"
2 l.store "File Size", "Taille du fichier"
2 l.store "Thumbnail", "Miniatures"
2 l.store "Medium size", "Taille moyenne"
2 l.store "Original size", "Fichier original"
2 l.store "Files", "Fichiers"
2 l.store "right-click for link", "clic droit pour le lien"
# app/views/admin/seo/index.html.erb
2 l.store "General settings", "Options générales"
2 l.store "Use meta keywords", "Utiliser les meta mots-clés"
2 l.store "Meta description", "Meta description"
2 l.store "Meta keywords", "Meta mots-clés"
2 l.store "Use RSS description", "Utilisation de la description RSS"
2 l.store "RSS description message", "Message de description du flux RSS"
2 l.store "Indexing", "Indexation"
2 l.store "Do not index categories", "Ne pas indexer les catégories"
2 l.store "Checking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", "Sélectionner cette option ajoutera le métalabel <code>noindex, follow</code> dans toutes les pages de chaque categorie. Cela les enlevera des moteurs de recherches et préviendra ainsi des problèmes de contenu dupliqué."
2 l.store "Do not index tags", "Ne pas indexer les labels"
2 l.store "Checking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "Sélectionner cette option ajoutera le métalabel <code>noindex, follow</code> dans toutes les pages de chaque label. Cela les enlevera des moteurs de recherches et préviendra ainsi des problèmes de contenu dupliqué."
2 l.store "Robots.txt", "Robots.txt"
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", "Typo ne peut pas écrire dans votre fichier robots.txt."
2 l.store "Use dofollow in comments", "Mettre les commentaires en dofollow"
2 l.store "Maybe you want to moderate feedbacks when turning this on", "Si vous activez cette option, peut-être devriez-vous également activer la modération des commentaires."
2 l.store "Use canonical URL", "Utiliser les URL canoniques"
2 l.store "Read more about %s", "En savoir plus à propos de %s"
2 l.store "Google", "Google"
2 l.store "Google Analytics", "Google Analytics"
2 l.store "Google Webmaster Tools validation link", "Lien de validation des Google Webmaster Tools."
2 l.store "Custom tracking code", "Code de tracking personnalisé"
2 l.store "Global settings", "Options générales"
2 l.store "This will display", "Cela affichera"
2 l.store "at the bottom of each of your post in the RSS feed", "en bas de chacun de vos articles sur le flux RSS"
# app/views/admin/seo/permalinks.html.erb
2 l.store "Typo offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links.", ""
2 l.store "Here are some examples to get you started.", "Typo vous offre la possibilité de créer une structure d'URL personnalisée pour vos liens permanents et vos archives. Cela peut vous permettre d'améliorer l'esthétique, l'utilisabilité et la viralité de vos liens."
2 l.store "Permalink format", "Format des permaliens"
2 l.store "Date and title", "Date et titre"
2 l.store "Month and title", "Mois et titre"
2 l.store "Title only", "Titre uniquement"
2 l.store "You can custom your URL structure using the following tags:", "Vous pouvez personnaliser la structure de vos URL à l'aide des tags suivats:"
2 l.store "your article slug. <strong>Using this slug is mandatory</strong>.", "le permalien de votre article <strong>ce champ est obligatoire</strong>"
2 l.store "your article year of publication.", "L'année de publication de votre article."
2 l.store "your article month of publication.", "Le mois de publication de votre article."
2 l.store "your article day of publication.", "Le jour de publication de votre article."
2 l.store "Permalinks", "Permaliens"
# app/views/admin/seo/titles.html.erb
2 l.store "Title settings", "Paramétrage des titres"
2 l.store "Enable comments by default", "Activer les commentaires par défaut"
2 l.store "Enable Trackbacks by default", "Activer les rétroliens par défaut"
2 l.store "Enable feedback moderation", "Activer la modération des commentaires"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Vous pouvez activez la modération des commentaires sur l'ensemble de votre site. Si vous le faites, aucun commentaire ou rétrolien ne sera publié sans une validation de votre part"
2 l.store "Comments filter", "Mise en forme des commentaires"
2 l.store "Show your email address", "Afficher votre adresse courriel"
2 l.store "Enable spam protection", "Activer la protection contre le spam"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "La protection contre le spam permettra à typo de comparer l'adresse IP des commentateurs ainsi que le contenu de leurs commentaires avec une liste noire distante"
2 l.store "Akismet Key", "Clé Akismet"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo peut utiliser le service de lutte contre le spam %s. Vous devez vous enregistrer afin de pouvoir utiliser les services d'Akismet. Si vous possédez une clé Akismet, ajoutez là ici"
2 l.store "Disable trackbacks site-wide", "Désactiver les trackbacks"
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Cette option vous permet de désactiver totalement les rétroliens sur votre blog. Ceci ne supprimera pas les rétroliens existants, mais empêchera tout nouveau rétrolien d'être créé"
2 l.store "Disable comments after", "Désactiver les commentaires au bout de "
2 l.store "days", "jours"
2 l.store "Set to 0 to never disable comments", "Mettez cette option à 0 pour ne jamais désactiver les commentaires dans le temps"
2 l.store "Max Links", "Nombre de liens maximum"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo rejettera automatiquement les commentaires et les rétroliens contenant un certain nombre de liens"
2 l.store "Set to 0 to never reject comments", "Mettez cette option à 0 pour ne jamais rejeter les commentaires"
2 l.store "Remember to set your reCaptcha keys inside config/initializers/recaptcha.rb", "N'oubliez pas de mettre votre clé d'activation dans config/initializers/recaptcha.rb"
2 l.store "Feedback settings", "Paramètres des commentaires"
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Votre blog "
2 l.store "Blog name", "Titre du blog"
2 l.store "Blog subtitle", "Sous-titre du blog"
2 l.store "Blog URL", "Adresse du blog"
2 l.store "Language", "Langue"
2 l.store "Allow users to register", "Autoriser les utilisateurs à s'enregistrer"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "Vous pouvez permettre aux utilisateurs de s'enregistrer sur votre blog. Par défaut, ils seront enregistrés come contributeurs. Cet utilisateur a un niveau faible sans droit mais qui possède sont propre profile sur le site. Si vous ne voulez pas que les utilisateurs s'enregistrent, vous pouvez les ajouter vous même dans la partie d'administration des utilisateurs."
2 l.store "Typo can notify you when new articles or comments are posted", "Typo peut vous alerter quand de nouveaux articles et commentaires sont publiés"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", "Vous pouvez utiliser votre compte Google Feedburner plutôt que votre adresse de flux Typo. Pour l'autoriser, remplissez ce formulaire avec votre identifiant Feedburner."
2 l.store "Current database version", "Version actuelle de la base"
2 l.store "New database version", "Nouvelle version de la base"
2 l.store "Your database supports migrations", "Votre base de données supporte la mise à jour"
2 l.store "Needed migrations", "Mise à jour nécessaire"
2 l.store "You are up to date!", "Vous êtes à jour !"
2 l.store "Update database now", "Mettez votre base à jour"
2 l.store "may take a moment", "cela peut prendre un moment"
2 l.store "Database migration", "Mise à jour de la base de données"
2 l.store "yes", "oui"
2 l.store "no", "non"
# app/views/admin/settings/write.html.erb
2 l.store "Send trackbacks", "Envoyer des rétroliens"
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Quand vous publiez un billet sur Typo, vous pouvez envoyer un rétrolien aux sites que vous liez. Cette fonctionnalité devrait être désactivée pour les blogs privée puisqu'elle permet de donner des informations à leur sujet à des tiers. Ceci ne s'impose cependant pas pour un blog public."
2 l.store "URLs to ping automatically", "Sites à alerter automatiquement"
2 l.store "Drag some plugins here to fill your sidebar", "Déplacez des plugins dans cet espace afin de remplir votre sidebar"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Glissez / déplacez des éléments pour changer la sidebar de votre blog. Pour supprimer un élément de votre sidebar, cliquez simplement sur 'supprimer'. Les changements sont effectués immédiatement, mais ne seront pas actifs tant que vous n'aurez pas cliqué sur le bouton 'Publier'."
2 l.store "Get more plugins", "Télécharger d'autres plugins"
2 l.store "You can download and install sidebar plugins from our official %s. All you have to do is upload the theme directory in your vendor/plugins directory.", ""
2 l.store "plugin repository", ""
2 l.store "Sidebar", "Plugins"
2 l.store "Publish changes", "Publier les modifications"
# app/views/admin/tags/edit.html.erb
2 l.store "Editing tag ", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", "Nom affiché"
2 l.store "Manage tags", "Labels"
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Thème actif"
2 l.store "Chose this theme", ""
2 l.store "Choose a theme", "Sélectionnez un thème"
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", "Paramètres du compte"
2 l.store "Password", "Mot de passe"
2 l.store "Password confirmation", "Confirmation du mot de passe"
2 l.store "Profile", "Profil"
2 l.store "User's status", "Statut de l'utilisateur"
2 l.store "Active", "Actif"
2 l.store "Inactive", "Inactif"
2 l.store "Profile Settings", "Paramètres du profil"
2 l.store "display twitter on public profile", "Afficher votre identifiant Twitter sur votre profil public"
2 l.store "Tell us more about you", "Dites nous en plus à votre sujet"
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "Modifier un utilisateur"
# app/views/admin/users/index.html.erb
2 l.store "New User", "Nouvel utilisateur"
2 l.store "Comments", "Commentaires"
2 l.store "State", "État"
2 l.store "%s user", "utilisateur %s"
2 l.store "Users", "Utilisateurs"
# app/views/admin/users/new.html.erb
2 l.store "Add User", "Ajouter un utilisateur"
# app/views/articles/_article.html.erb
2 l.store "Posted by", "Publié par"
# app/views/articles/_article_excerpt.html.erb
2 l.store "Continue reading", "Lire plus"
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", "Oops, quelque chose s'est mal déroulé. Votre commentaire n'a donc pu être enregistré."
# app/views/articles/_comment_form.html.erb
2 l.store "Your name", "Votre nom "
2 l.store "Your email", "Votre courriel"
2 l.store "Your message", "Votre commentaire"
2 l.store "Comment Markup Help", "Aide sur le balisage des commentaires"
2 l.store "Preview comment", "Prévisualiser le commentaire"
2 l.store "No articles found", "Aucun article ne correspond à la recherche"
2 l.store "posted in", "publié dans"
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "va dire"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Il y a"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Réagir à ce billet"
2 l.store "Trackbacks", "Rétroliens"
2 l.store "Use the following link to trackback from your own site", "Utilisez le lien ci-dessous pour envoyer un rétrolien depuis votre site"
2 l.store "RSS feed for this post", "Flux RSS de ce billet"
2 l.store "trackback uri", "URL de rétrolien"
2 l.store "Comments are disabled", "Les commentaires sont désactivés"
# app/views/authors/show.html.erb
2 l.store "Web site:", "Site web:"
2 l.store "MSN:", "MSN :"
2 l.store "Yahoo:", "Yahoo :"
2 l.store "Jabber:", "Jabber :"
2 l.store "AIM:", "AIM :"
2 l.store "Twitter:", "Twitter :"
2 l.store "About %s", "À propos de %s"
2 l.store "This author has not published any article yet", "Cet utilisateur n'a publié aucun article"
# app/views/comments/_comment.html.erb
2 l.store "said", "a dit"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Ce commentaire a été envoyé à la modération. Il ne sera affiché qu'une fois approuvé par un modérateur"
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", "Ce commentaire est en attente de modération"
2 l.store "<strong>Password:</strong> %s", "<strong>Mot de passe :</strong> %s"
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "Ne perdez pas l'email que nous venons de vous envoyer à l'adresse %s ou vous ne pourrez plus vous connecter à l'application"
2 l.store "Add MetaData", "Ajouter des métadonnées"
2 l.store "All comments", "Tous les commentaires"
2 l.store "Allow non-ajax comments", "Autoriser l'envoi de commentaires sans AJAX"
2 l.store "Apr", "avr"
2 l.store "April", "avril"
2 l.store "Archives for", "Archives de"
2 l.store "Archives for ", "Archives de"
2 l.store "Are you sure you want to delete the Article Type ", ""
2 l.store "Are you sure you want to delete the category ", "Êtes vous certain de vouloir supprimer cette catégorie "
2 l.store "Are you sure you want to delete the page", "Voulez-vous vraiment effacer cette page"
2 l.store "Are you sure you want to delete the redirection ", ""
2 l.store "Are you sure you want to delete the tag", "Êtes-vous certain de vouloir supprimer le label"
2 l.store "Are you sure you want to delete this %s", ""
2 l.store "Are you sure you want to delete this article", "Êtes-vous certain de vouloir supprimer cet article"
2 l.store "Are you sure you want to delete this item?", "Êtes vous certain de vouloir supprimer cette entrée ?"
2 l.store "Article Types", ""
2 l.store "Aug", "août"
2 l.store "August", "août"
2 l.store "Back to ", "Revenir à "
2 l.store "Back to overview", "Revenir à la liste"
2 l.store "Back to tags list", "Revenir à la liste des labels"
2 l.store "Blacklist Pattern could not be created.", "Cette entrée n'a pas pu être créée"
2 l.store "Blacklist Pattern could not be updated.", "Cette entrée n'a pas pu être mise à jour"
2 l.store "Blacklist Pattern was successfully created.", "Cette entrée a été créée avec succès"
2 l.store "Blacklist Patterns", "Liste noire"
2 l.store "BlacklistPattern was successfully updated.", "Cette entrée a été mise à jour avec succès"
2 l.store "Blog settings", "Configuration du blog"
2 l.store "By %s on %s", "Par %s le %s"
2 l.store "Category", "Catégorie"
2 l.store "Comment Excerpt", "Extrait du commentaire"
2 l.store "Comments for", "Commentaires pour"
2 l.store "Comments for %s (%s)", "Commentaires sur l'article %s (%s)"
2 l.store "Confirm Classification of Checked Items", "Confirmer la classification des commentaires"
2 l.store "Contact options", "Options de contact"
2 l.store "Content Type was successfully updated.", "Le type du contenu a été mis à jour avec succès."
2 l.store "Continue reading...", "Lire la suite..."
2 l.store "Copyright Information", "Informations sur le copyright"
2 l.store "Dec", "déc"
2 l.store "December", "décembre"
2 l.store "Delete this Post Type", ""
2 l.store "Delete this article", "Supprimer ce billet"
2 l.store "Delete this category", "Supprimer cette catégorie"
2 l.store "Delete this feedback", ""
2 l.store "Delete this page", "Supprimer cette page"
2 l.store "Delete this redirection", ""
2 l.store "Delete this tag", "Supprimer ce label"
2 l.store "Display name", "Nom affiché sur le site"
2 l.store "Duration", "Durée"
2 l.store "Edit Metadata", "Modifier les métadonnées"
2 l.store "Editing ", "Vous éditez"
2 l.store "Editing pattern", "Éditer un motif"
2 l.store "Error occurred while updating Content Type.", "Une erreur est survenue lors de la mise à jour du type du contenu."
2 l.store "Explicit", "Contenu explicite"
2 l.store "Feb", "fév"
2 l.store "February", "février"
2 l.store "Feedback for", "Commentaires sur"
2 l.store "File", "Fichier"
2 l.store "File does not exist", ""
2 l.store "File saved successfully", "Le fichier a été enregistré avec succès"
2 l.store "Format of permalink", "Format des liens permanents"
2 l.store "Fri", "Ven"
2 l.store "Friday", "Vendredi"
2 l.store "Get more themes", "Téléchargez d'autres thèmes"
2 l.store "Google verification link", "Lien Google pour vérification"
2 l.store "HTML was cleared", "le cache a est vidé"
2 l.store "Ham?", "Désirable?"
2 l.store "IP", "Adresse IP"
2 l.store "If you are reading this article elsewhere than", "Si vous lisez cet article ailleurs que sur"
2 l.store "If you need help, %s. You can also browse our %s or %s to customize your Typo blog.", "Si vous avez besoin d'aide, n'hésitez pas à %s. Vous pouvez aussi visiter notre %s ou %s afin de personnaliser votre blog sous Typo"
2 l.store "Images", "Images"
2 l.store "Jan", "jan"
2 l.store "January", "janvier"
2 l.store "Jul", "juil"
2 l.store "July", "juillet"
2 l.store "Jun", "juin"
2 l.store "June", "juin"
2 l.store "Just Marked As Ham", "Marqué comme désirable"
2 l.store "Just Marked As Spam", "Marqué comme spam"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Les options suivantes seront ajoutées automatiquement quand vous publierez des enclosures contenant des métadonnées iTunes"
2 l.store "Theme catalogue", "Catalogue de thèmes"
2 l.store "Theme editor", "Éditeur de thèmes"
2 l.store "There is no %s yet. Why don't you start and create one?", "Il n'y a aucun %s, pourquoi n'en créeriez-vous pas ?"
2 l.store "Thu", "Jeu"
2 l.store "Thursday", "Jeudi"
2 l.store "Titles", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", "Pour installer votre thèmes, il suffit de l'uploader dans le dossier themes de votre projet."
2 l.store "Tue", "Mar"
2 l.store "Tuesday", "Mardi"
2 l.store "Type", "Type"
2 l.store "Typogarden", "Typogarden"
2 l.store "Unable to write file", "Impossible d'écrire le fichier"
2 l.store "Unclassified", "Non vérifié"
2 l.store "Unpublished", "Non publié"
2 l.store "Visual", "Visuel"
2 l.store "Wed", "Mer"
2 l.store "Wednesday", "Mercredi"
2 l.store "Yes", "Oui"
2 l.store "You are not authorized to open this file", "Vous n'êtes pas autorisé à ouvrir ce fichier"
2 l.store "You can download third party themes from officially supported %s ", "Vous pouvez télécharger des thèmes officiellement supportés sur %s "
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Vous pouvez désactiver l'envoi des commentaires en AJAX. Typo utilisera toujours l'AJAX par défaut pour envoyer les commentaires si Javascript est activé. Désactiver l'AJAX sert donc aux gens ne disposant pas de Javascript et aux robots spammeurs"
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Vous devez spécifier un identifiant : %%month%%, %%year%%, %%day%%, %%title%%"
2 l.store "Your robots.txt file is not writeable. Typo won't be able to write it", "Votre fichier Robots.txt n'est pas écrivable. Typo ne peux donc pas y écrire."
2 l.store "add a comment", "Ajouter un commentaire"
2 l.store "add new", "nouveau"
2 l.store "and published on", "et publié sur"
2 l.store "by %s on %s", "par %s sur %s"
2 l.store "da_DK", "Danois"
2 l.store "de_DE", "Allemand"
2 l.store "direct link to this article", "lien direct vers cet article"
2 l.store "en_US", "Anglais (Américain)"
2 l.store "enabled", "activés"
2 l.store "es_MX", "Espagnol (Mexicain)"
2 l.store "everything about", "tout sur"
2 l.store "example", "par exemple"
2 l.store "for", "pour"
2 l.store "fr_FR", "Français"
2 l.store "from %s to %s", ""
2 l.store "he_IL", "Hébreux"
2 l.store "it has been illegally reproduced and without proper authorization", "c'est qu'il a été reproduit illégalement et sans autorisation"
2 l.store "it_IT", "Italien"
2 l.store "ja_JP", "Japonais"
2 l.store "later", "plus tard"
2 l.store "later:", "plus tard"
2 l.store "log out", "déconnexion"
2 l.store "lt_LT", "Lituanien"
2 l.store "nl_NL", "Hollandais"
2 l.store "no posts", "aucun article"
2 l.store "pl_PL", "Polonais"
2 l.store "published", "publié"
2 l.store "ro_RO", "Roumain"
2 l.store "save", "Sauver"
2 l.store "seperate with spaces", "séparez-les par des espaces"
2 l.store "show", "afficher"
2 l.store "theme catalogue", "catalogue de thèmes"
2 l.store "unpublished", "hors ligne"
2 l.store "your blog", "votre blog"
2 l.store "your latitude and longitude", "votre latitude et votre longitude"
2 l.store "zh_TW", "Chinois"
end
lang/he_IL.rb
100.0 % covered
598 relevant lines.
598 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("he_IL") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", "ההתחברות הצליחה"
2 l.store "Login unsuccessful", "ההתחברות נכשלה"
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Confirmed classification of %s item(s)", "אומת הסיווג של %d פריטים."
2 l.store "Not implemented", "לא מיושם"
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", "התגובה נוצרה בהצלחה."
2 l.store "Comment was successfully updated.", "התגובה עודכנה בהצלחה."
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", "הדף נוצר בהצלחה."
2 l.store "Page was successfully updated.", "הדף עודכן בהצלחה."
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", "המשתמש עודכן בהצלחה."
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", "שגיאה בעת עדכון סוג התוכן."
2 l.store "complete", "מלא"
2 l.store "File uploaded: ", " :הקובץ הועלה"
2 l.store "Unable to upload", "לא מסוגל להעלות"
2 l.store "Metadata was successfully updated.", "מידע-העל עודכן בהצלחה."
2 l.store "Not all metadata was defined correctly.", "לא כל מידע-העל הוגדר נכון."
2 l.store "Content Type was successfully updated.", "סוג התוכן עודכן בהצלחה."
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", "אנא בדוק ושמור את השינויים לפני שתמשיך"
2 l.store "config updated.", "ההגדרה עודכנה."
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", "התוית עודכנה בהצלחה."
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", "אינך רשאי לפתוח קובץ זה"
2 l.store "Unapproved comments", "תגובות לא מאושרות"
2 l.store "Limit to spam", "סווג כספאם"
# app/views/admin/feedback/_form.html.erb
2 l.store "Add a comment", ""
2 l.store "Url", "כתובת"
# app/views/admin/feedback/_spam.html.erb
2 l.store "This comment by <strong>%s</strong> was flagged as spam, %s?", ""
# app/views/admin/feedback/article.html.erb
2 l.store "Comments for %s", "תגובות עבור %s"
2 l.store "Status", "מצב"
2 l.store "Comment Author", ""
2 l.store "Comment", ""
# app/views/admin/feedback/edit.html.erb
2 l.store "Comments for", "תגובות על"
# app/views/admin/feedback/index.html.erb
2 l.store "Search Comments and Trackbacks that contain", "חפש תגובות או עוקבים-חזרה המכילים"
2 l.store "Article", "כתבה"
# app/views/admin/pages/_form.html.erb
2 l.store "Online", "מוצג"
2 l.store "Page settings", ""
2 l.store "Permanent link", ""
# app/views/admin/pages/destroy.html.erb
2 l.store "Pages", "דפים"
2 l.store "Are you sure you want to delete the page", "האם אתה בטוח שברצונך למחוק דף זה ?"
2 l.store "Delete this page", "מחק דף זה"
# app/views/admin/pages/index.html.erb
2 l.store "New Page", ""
2 l.store "Manage pages", "נהל דפים"
# app/views/admin/profiles/index.html.erb
2 l.store "Your profile", ""
# app/views/admin/resources/_mime_edit.html.erb
2 l.store "Content Type", "סוג התוכן"
# app/views/admin/resources/_pages.html.erb
2 l.store "Previous page", "הדף הקודם"
2 l.store "Next page", "הדף הבא"
# app/views/admin/resources/_upload.html.erb
2 l.store "Upload a File to your Site", "העלה קובץ לאתר שלך"
2 l.store "File", "קובץ"
2 l.store "Upload", "העלה"
# app/views/admin/resources/destroy.html.erb
2 l.store "Are you sure you want to delete this file", "האם אתה בטוח שברצונך למחוק קובץ זה ?"
2 l.store "Delete this file from the webserver?", "למחוק קובץ זה מהשרת"
2 l.store "File Uploads", "העלאות קבצים"
# app/views/admin/resources/images.html.erb
2 l.store "Thumbnail", ""
2 l.store "File Size", "גודל הקובץ"
2 l.store "Images", ""
2 l.store "right-click for link", "לחיצה ימנית לקישור"
# app/views/admin/resources/index.html.erb
2 l.store "Filename", "שם הקובץ"
# app/views/admin/settings/_submit.html.erb
2 l.store "Update settings", ""
# app/views/admin/settings/feedback.html.erb
2 l.store "Enable comments by default", "אפשר תגובות כברירת מחדל"
2 l.store "Enable Trackbacks by default", "אפשר עוקבים-חזרה כברירת מחדל"
2 l.store "Enable feedback moderation", "אפשר ביקורת על המשוב"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "תוכל לאפשר ביקורת על המשוב בכל האתר. אם תבצע זאת, לא תוצג שום תגובה או עוקב-חזרה בבלוג שלך אלא אם תאשר אותה."
2 l.store "Comments filter", "מסנן התגובות"
2 l.store "Enable gravatars", "אפשר דמויות"
2 l.store "Show your email address", "הצג את כתובת הדואל שלך"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo יכולה לעדכן אותך בעת שמאמרים חדשים או תגובות נשלחות."
2 l.store "Source Email", "דואל המקור"
2 l.store "Email address used by Typo to send notifications", "כתובת הדואל שתשמש את Typo לשלוח עדכונים"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "אפשור הגנת ספאם תגרום ל-Typo להשוות כתובות ה-IP של השולחים ואת תוכן השליחה כנגד רשימות שחורות מקומיות או מרוחקות - הגנה טובה כנגד רובוטי ספאם."
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "תוכל להשתמש בשירות מסנן ספאם של %s. עליך להירשם Akisemt מפתח API לפני שתוכל להשתמש בשירות. אם כבר יש לך מפתח, רשום אותו כאן."
2 l.store "Disable trackbacks site-wide", "בטל עוקבים-חזרה בכל האתר"
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "הגדרה זו מאפשרת לך לבטל עוקבים-חזרה לכל כתבה בבלוג שלך. היא לא תסיר עוקבים-חזרה קיימים, אבל תמנע נסיונות להוספת עוקב-חזרה בכל הכתבות הבלוג שלך."
2 l.store "Set to 0 to never disable comments", "הגדר כ-0 כדי לא לבטל תגובות אף פעם"
2 l.store "Max Links", "מקסימום קישורים"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo תדחה אוטומטית תגובות ועוקבים-חזרה המכילים את כמות הקישורים מסויימת"
2 l.store "Set to 0 to never reject comments", "הגדר כ-0 כדי לא לדחות תגובות לעולם"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "הבלוג שלך"
2 l.store "Blog name", "שם הבלוג"
2 l.store "Blog subtitle", "כותרת משנה"
2 l.store "Blog URL", "כתובת הבלוג"
2 l.store "Language", "שפה"
2 l.store "Allow users to register", "אפשר למשתמשים להירשם"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "תוכל לאפשר למשתמשים להירשם לבלוג שלך. כברירת מחדל, הם יירשמו כתורמים - חשבון שאינו נותן הרשאות מיוחדות אלא רק את הזכות להחזיק חשבון באתר. אם אינך רוצה שהמשתמשים יוכלו להירשם בעצמם, תוכל להוסיף אותם בעצמך כחללק מדף זה"
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "תצוגה"
2 l.store "articles on my homepage by default", "כתבות בדף הבית שלי"
2 l.store "articles in my news feed by default", "כתבות במזין החדשות שלי"
2 l.store "Show full article on feed", "הצג כתבה מלאה במזין החדשות"
2 l.store "Feedburner ID", ""
2 l.store "General settings", "הגדרות כלליות"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", "אופטימיזצית מנוע חיפוש"
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "You are up to date!", "בסיס הנתונים שלך מעודכן !"
2 l.store "Update database now", "עדכן את בסיס הנתונים"
2 l.store "may take a moment", "ייתכן כי ייקח זמן מה"
2 l.store "Database migration", "עדכוני בסיס הנתונים"
2 l.store "yes", "כן"
2 l.store "no", "לא"
# app/views/admin/settings/write.html.erb
2 l.store "Send trackbacks", "שלח עוקבים-חזרה"
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "בעת פרסום במאמר, Typo יכולה לשלוח עוקבים-חזרה לאתרים אליהם אתה מקשר. מומלץ לבטל זאת לבלוגים פרטיים משום שמידע פרטי על האתרים אליהם אתה מקשר עלול לדלוף. לבלוגים ציבוריים, אין טעם לבטל זאת."
2 l.store "URLs to ping automatically", "כתובות לקישור אוטומטי"
2 l.store "Latitude, Longitude", "קו רוחב, קו אורך"
2 l.store "your lattitude and longitude", "קווי הרוחב והאורך שלך"
2 l.store "exemple", "דוגמא"
2 l.store "Write", "כתוב"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "אין תוספים מותקנים"
# app/views/admin/sidebar/_publish.html.erb
2 l.store "Changes published", "השינויים פורסמו"
# app/views/admin/sidebar/_target.html.erb
2 l.store "Drag some plugins here to fill your sidebar", "גרור חלק מהתוספים כדי למלא את תיבת הצד"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "גרור והשלך כדי לשנות את פריטי תיבת הצד המוצגת בבלוג שלך. כדי להסיר פריטים מתיבת הצד, לחץ על הסר. השינויים נשמרים מיידית אבל לא מופעלים עד שתלחץ על הכפתור 'פרסם'."
2 l.store "Are you sure you want to delete the tag", "האם אתה בטוח שרצונך למחוק תווית זו ?"
2 l.store "Delete this tag", "מחק תוויות זו"
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", "עורך"
2 l.store "Back to tags list", "חזרה לרשימת התוויות"
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", "שם תצוגה"
2 l.store "Manage tags", "נהל תוויות"
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", "עורך העיצוב"
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "עיצוב פעיל"
2 l.store "Get more themes", "קבל עיצובים נוספים"
2 l.store "You can download third party themes from officially supported %s ", "תוכל להוריד עיצובים נוספים מהאתר %s"
2 l.store "Typogarden", "Typogarden"
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", "כדי להתקין עיצוב עליך תצטרך להעלות אותא אל ספריית העיצובים שלך (Themes). ברגע שהעיצוב הועלה תוכל לראות בדף זה."
2 l.store "Send notification messages when new articles are posted", "עדכן בעת כתבות חדשים"
2 l.store "Send notification messages when comments are posted", "עדכן בעת תגובות חדשות"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "Your AIM id", ""
2 l.store "display AIM ID on public profile", ""
2 l.store "Your Twitter username", ""
2 l.store "display twitter on public profile", ""
2 l.store "Tell us more about you", ""
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "האם אתה בטוח שברונך למחוק משתמש זה?"
2 l.store "Yes", "כן"
2 l.store "Users", "משתמשים"
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "ערוך משתמש"
# app/views/admin/users/index.html.erb
2 l.store "New User", ""
2 l.store "Comments", "תגובות"
2 l.store "State", ""
2 l.store "%s user", ""
# app/views/admin/users/new.html.erb
2 l.store "Add User", "הוסף משתמש"
# app/views/articles/_article.html.erb
2 l.store "Posted by", "נכתב על ידי"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "a dit"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "תגובה זו הועברה לביקורת. היא לא תופיע בבלוג עד אשר הכותב יאשר אותה"
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "השם שלך"
2 l.store "Your email", "הדואל שלך"
2 l.store "Your message", "התגובה שלך"
2 l.store "Comment Markup Help", "עזרה על שפת הטקסט"
2 l.store "Preview comment", "תצוגה מקדימה של התגובה"
2 l.store "leave url/email", "השאר כתובת/דואל"
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", "אופס, משהו השתבש, התגובה אינה יכולה להישמר"
# app/views/articles/_trackback.html.erb
2 l.store "From", "מאת"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "לא נמצאו כתבות"
2 l.store "posted in", "נשלח ב-"
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "עומד לומר"
# app/views/articles/groupings.html.erb
2 l.store "There are", "ישנם"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "הגב"
2 l.store "Trackbacks", "עוקבים חזרה"
2 l.store "Use the following link to trackback from your own site", "השתמש בקישור הבא כדי לעקוב-חזרה מהאתר שלך"
2 l.store "RSS feed for this post", "מזין RSS לכתבה זו"
2 l.store "trackback uri", "כתובת העוקב-חזרה"
2 l.store "Comments are disabled", "התגובות מבוטלות"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", "התגובה הזו ממתינה לאישור"
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", "סקירה"
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "BlacklistPattern was successfully created.", "התבנית נוצרה בהצלחה."
2 l.store "BlacklistPattern was successfully updated.", "התבנית עודכנה בהצלחה."
2 l.store "Blog publisher", "כותב"
2 l.store "Body", "גוף הכתבה"
2 l.store "By default, Typo generates static HTML pages for your posts. However, if you plan to publish posts in the futur, you may want to use semi dynamic caching", "כברירת מחדל, Typo מייצרת דפי HTML סטטיים עבור הכתבות שלך. למרות זאת, אם אתה מעוניין לפרסם כתבות בעתיד, ייתכן כי תרצי מטמון חצי דינמי"
2 l.store "Cache was cleared", "המטמון נוקה"
2 l.store "Category", "קטגורייה"
2 l.store "Category could not be created.", "לא ניתן ליצור את הקטגורייה"
2 l.store "Category was successfully created.", "הקטגורייה נוצרה בהצלחה"
2 l.store "Category was successfully updated.", "הקטגורייה עודכנה בהצלחה"
2 l.store "Change your blog presentation", "לשנות את עיצוב הבלוג"
2 l.store "Choose caching methode", "בחר את שיטת המטמון"
2 l.store "Choose password", "בחר סיסמה"
2 l.store "Choose theme", "בחר עיצוב"
2 l.store "Choose themes", "בחר עיצובים"
2 l.store "Comment Excerpt", "תקציר התגובה"
2 l.store "Comments and Trackbacks for", "תגובות ועוקבים-חזרה עבור"
2 l.store "Comments for %s (%s)", "תגובות עבור %s (%s)"
2 l.store "Confirm Classification of Checked Items", "אמת סיווג של פריטים"
2 l.store "Confirm password", "אמת סיסמה"
2 l.store "Content", "תוכן"
2 l.store "Contributor", "תורם"
2 l.store "Copyright Information", "מידע על זכויות יוצרים"
2 l.store "Create Text Filter", "צור מסנן טקסט"
2 l.store "Created at", "נוצר בתאריך"
2 l.store "Delete this filter", "מחק מסנן זה"
2 l.store "Desired login", "שם המשתמש הרצוי"
2 l.store "Drafts:", "טיוטות"
2 l.store "Duration", "משך זמן"
2 l.store "Edit Category", "ערוך קטגוריות"
2 l.store "Edit MetaData", "ערוך מידע-על"
2 l.store "Edit content", "ערוך תוכן"
2 l.store "Editing pattern", "עריכת תבנית"
2 l.store "Editing textfilter", "עריכת מסנן טקסט"
2 l.store "Editing trackback", "ערוך עוקב-חזרה"
2 l.store "Empty Fragment Cache", "נקה מטמון קטעים"
2 l.store "Explicit", "באופן מפורש"
2 l.store "Filters", "מסננים"
2 l.store "General options", "הגדרות כלליות"
2 l.store "HTML was cleared", "מטמון HTML נוקה"
2 l.store "Help", "עזרה"
2 l.store "IP", "כתובת IP"
2 l.store "Key Words", "מילות מפתח"
2 l.store "Last Comments", "תגובות אחרונות"
2 l.store "Last posts", "כתבות אחרונות"
2 l.store "Live Search:", "חיפוש"
2 l.store "Macro Filter Help", "עזרת צסנן מאקרו"
2 l.store "Macros", "מאקרו"
2 l.store "Manage", "נהל"
2 l.store "Manage categories", "נהל קטגוריות"
2 l.store "Manage posts", "נהל כתבות"
2 l.store "Manage uploads", "נהל העלאות"
2 l.store "Markup", "שפת הטקסט"
2 l.store "Markup type", "סוג שפת הטקסט"
2 l.store "MetaData", "מידע -על"
2 l.store "Metadata was successfully removed.", "מידע-העל נמחק בהצלחה"
2 l.store "No", "לא"
2 l.store "Not published by Apple", "לא פורסם על ידי Apple"
2 l.store "Notification", "עדכונים"
2 l.store "Notified", "מעודכנים"
2 l.store "Number of Articles", "מספר מאמרים"
2 l.store "Number of Comments", "מספר תגובות"
2 l.store "Offline", "לא מוצג"
2 l.store "Older posts", "כתבות ישנות יותר"
2 l.store "Optional Name", "שם(לא חובה)"
2 l.store "Options", "אפשרויות"
2 l.store "Parameters", "פרמטרים"
2 l.store "Pattern", "תבנית"
2 l.store "Podcast", "רשימת השמעה"
2 l.store "Podcasts", "רשימות השמעה"
2 l.store "Post-processing filters", "מסנני עיבוד מאוחר"
2 l.store "Posted date", "תאריך שליחה"
2 l.store "Posts", "כתבות"
2 l.store "Profile was successfully created.", "הדיוקן נוצר בהצלחה."
2 l.store "Profile was successfully updated.", "הדיוקן עודכן בהצלחה."
2 l.store "Read", "קרא"
2 l.store "Read more", "קרא עוד"
2 l.store "Rebuild cached HTML", "בנה מחדש מטמון HTML"
2 l.store "Remove iTunes Metadata", "מחק מידע-על של iTunes"
2 l.store "Resource MetaData", "מידע-על על המשאב"
2 l.store "Save Settings", "שמור הגדרות"
2 l.store "Set iTunes metadata for this enclosure", "הגדר מידע-על של iTunes למעטפת זו"
2 l.store "Setting for channel", "הגדרות הערוץ"
2 l.store "Settings", "הגדרות"
2 l.store "Show content", "הצג תוכן"
2 l.store "Signup successful", "ההרשמה הצליחה"
2 l.store "Statistics", "סטטיסטיקה"
2 l.store "String", "מחרוזת"
2 l.store "Subtitle", "תת כותרת"
2 l.store "Summary", "סיכום"
2 l.store "System information", "נתוני המערכת"
2 l.store "Text Filter Details", "פרטי מסנן טקסט"
2 l.store "Text Filter Help", "עזרת מסנן הטקסט"
2 l.store "Text Filters", "מסנני טקסט"
2 l.store "TextFilter was successfully updated.", "מסנן הטקסט עודכן בהצלחה."
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "ההגדרות למטה משמשות כברירת מחדל בעת שאתה בוחר לפרסם מעטפת עם מידע-על של iTunes"
2 l.store "Themes", "עיצובים"
2 l.store "There is no %s yet. Why don't you start and create one?", "אין עדיין %s. למה לא תיצור אחד חדש?"
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s , %s or %s.", "כאן תמצא סקירה קצרה על מה שקורה בבלוג שלך ומה תוכל לעשות. אולי תרצה %s, %s , %s"
2 l.store "Trackback was successfully updated.", "העוקב-חזרה עודכן בהצלחה."
2 l.store "Type", "סוג"
2 l.store "Typo administrator", "מנהל"
2 l.store "Typo documentation", "תיעוד Typo"
2 l.store "URL", "כתובת"
2 l.store "Update your profile or change your password", "לעדכן את פרטי חשבונך או לשנות את סיסמתך"
2 l.store "Use simple editor without live preview", "השתמש בעורך פשוט ללא תצוגה מקדימה חיה"
2 l.store "Use static HTML page caching ", "השתמש במטמון HTML סטטי"
2 l.store "View", "הצג"
2 l.store "Write a page", "כתוב דף"
2 l.store "Write a posts", "כתוב כתבה"
2 l.store "XML Syndication", "עידכוני XML"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "תוכל לבטל תגובות ללא Ajax . המערכת תמיד משתמשת ב-Ajax עבור תגובות אם Javascript מאופשר, ולכן תגובות ללא Ajax הם תמיד מספאמרים או ממשתמשים ללא Javascript"
2 l.store "add a comment", "הוסף תגובה"
2 l.store "add new", "הוסף חדש"
2 l.store "by %s on %s", "מאת %s על %s"
2 l.store "edit", "ערוך"
2 l.store "log in", "התחבר"
2 l.store "log out", "התנתק"
2 l.store "on", "על"
2 l.store "save", "שמור"
2 l.store "seperate with spaces", "הפרד עם רווחים"
2 l.store "show", "הצג"
2 l.store "via email", "באמצעות דואל"
2 l.store "with %s AER OS XK iconset %s", "עם %s AER OS XK iconset %s, תורגם על ידי <a href='http://www.zebrot.com'>זברות</a>."
2 l.store "your blog", "הבלוג שלך"
end
lang/it_IT.rb
100.0 % covered
659 relevant lines.
659 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("it_IT") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Annulla"
2 l.store "Store", "Salva"
2 l.store "Delete", "Elimina"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "o"
2 l.store "Save", "Salva"
2 l.store "Edit", "Modifica"
2 l.store "Show", ""
2 l.store "Published", "Pubblicato"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "Torna al sommario"
2 l.store "Name", "Nome"
2 l.store "Description", "Descrizione"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "nessun commento"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "nessun trackback"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "Tags"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", ""
2 l.store "Uploads", "Uploads"
2 l.store "Post settings", ""
2 l.store "Publish at", "Pubblicato il"
2 l.store "Permalink", "Permalink"
2 l.store "Article filter", "Filtra articolo"
2 l.store "Save as draft", ""
# app/views/admin/content/destroy.html.erb
2 l.store "Are you sure you want to delete this article", "Sei sicuro di voler eliminare questo articolo"
2 l.store "Delete this article", "Elimina articolo"
2 l.store "Articles", ""
# app/views/admin/content/index.html.erb
2 l.store "New Article", ""
2 l.store "Search articles that contain ...", ""
2 l.store "Search", "Cerca"
2 l.store "Author", "Autore"
2 l.store "Date", ""
2 l.store "Feedback", "Commenti"
2 l.store "Filter", ""
2 l.store "Manage articles", ""
# app/views/admin/dashboard/_comments.html.erb
2 l.store "Latest Comments", ""
2 l.store "No comments yet", "Nessun commento"
2 l.store "By %s on %s", ""
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", ""
2 l.store "No one made a link to you yet", ""
2 l.store " made a link to you saying ", ""
2 l.store "You have no internet connection", ""
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", ""
2 l.store "update your profile or change your password", ""
2 l.store "You can also do a bit of design, %s or %s.", ""
2 l.store "change your blog presentation", ""
2 l.store "enable plugins", ""
2 l.store "write a post", ""
2 l.store "write a page", ""
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "I più popolari"
2 l.store "Nothing to show yet", ""
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", ""
2 l.store "No posts yet, why don't you start and write one", ""
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", ""
2 l.store "Oh no, nothing new", ""
# app/views/admin/dashboard/_welcome.html.erb
2 l.store "Welcome back, %s!", ""
2 l.store "%d articles and %d comments were posted since your last connexion", ""
2 l.store "You're running Typo %s", ""
2 l.store "Total posts : %d", ""
2 l.store "Your posts : %d", ""
2 l.store "Total comments : %d", ""
2 l.store "Spam comments : %d", ""
# app/views/admin/feedback/_button.html.erb
2 l.store "Select action", ""
2 l.store "Delete Checked Items", "Elimina gli elementi selezionati"
2 l.store "Delete all spam", ""
2 l.store "Mark Checked Items as Spam", "Segna come spam"
2 l.store "Mark Checked Items as Ham", "Segna come confermati"
2 l.store "All comments", ""
2 l.store "Limit to ham", ""
2 l.store "Unapproved comments", ""
2 l.store "Limit to spam", "Limita a spam"
# app/views/admin/feedback/_form.html.erb
2 l.store "Add a comment", ""
2 l.store "Url", "Sito"
# app/views/admin/feedback/_spam.html.erb
2 l.store "This comment by <strong>%s</strong> was flagged as spam, %s?", ""
# app/views/admin/feedback/article.html.erb
2 l.store "Comments for %s", ""
2 l.store "Status", "Stato"
2 l.store "Comment Author", ""
2 l.store "Comment", ""
# app/views/admin/feedback/edit.html.erb
2 l.store "Comments for", "Commenti per"
# app/views/admin/feedback/index.html.erb
2 l.store "Search Comments and Trackbacks that contain", "Cerca commenti o trackback che contengono"
2 l.store "Article", ""
# app/views/admin/pages/_form.html.erb
2 l.store "Online", "Online"
2 l.store "Page settings", ""
2 l.store "Permanent link", ""
# app/views/admin/pages/destroy.html.erb
2 l.store "Pages","Pagine"
2 l.store "Are you sure you want to delete the page", "Sei sicuro di voler eliminare questa pagina"
2 l.store "Delete this page", "Elimina questa pagina"
# app/views/admin/pages/index.html.erb
2 l.store "New Page", ""
2 l.store "Manage pages", ""
# app/views/admin/profiles/index.html.erb
2 l.store "Your profile", ""
# app/views/admin/resources/_mime_edit.html.erb
2 l.store "Content Type", "Tipo di contenuto"
# app/views/admin/resources/_pages.html.erb
2 l.store "Previous page", "Pagina precedente"
2 l.store "Next page", "Pagina successiva"
# app/views/admin/resources/_upload.html.erb
2 l.store "Upload a File to your Site", "Invia un file al tuo sito"
2 l.store "File", "File"
2 l.store "Upload", "Invia"
# app/views/admin/resources/destroy.html.erb
2 l.store "Are you sure you want to delete this file", "Sei sicuro di voler eliminare questo file"
2 l.store "Delete this file from the webserver?", "Eliminare questo file dal webserver ?"
2 l.store "File Uploads", "Invia file"
# app/views/admin/resources/images.html.erb
2 l.store "Thumbnail", ""
2 l.store "File Size", "Dimensione"
2 l.store "Images", ""
2 l.store "right-click for link", "clicca col destro per il link"
# app/views/admin/resources/index.html.erb
2 l.store "Filename", "Nome del file"
# app/views/admin/settings/_submit.html.erb
2 l.store "Update settings", ""
# app/views/admin/settings/feedback.html.erb
2 l.store "Enable comments by default", "Abilita commenti di defaault"
2 l.store "Enable Trackbacks by default", "Abilita Trackbacks come default"
2 l.store "Enable feedback moderation", "Abilita la moderazione dei feedback"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Puoi abilitare in modo globale la moderazione dei feedback. Se fai cio', nessun commento o trackback apparira' sul tuo blog se tu non lo autorizzi."
2 l.store "Comments filter", "Filtra commenti"
2 l.store "Enable gravatars", "Abilita gravatars"
2 l.store "Show your email address", "Mostra il tuo indirizzo mail"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Il blog puo' notificarti l'inserimento di un nuovo articolo e/o commento"
2 l.store "Email address used by Typo to send notifications", "Indirizzo email usato dal blog per inviare le notifiche"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Abilitando la protezione contro lo spam fa si che il blog compari gli IP di chi invia i commenti e anche il loro contenuto con una blacklist remota. E' una buona difesa contro gli spam robot"
2 l.store "Enable spam protection", "Abilita la protezione spam"
2 l.store "Akismet Key", "Chiave Akismet"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", ""
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", ""
2 l.store "Disable comments after", "Disabilita commenti dopo "
2 l.store "days", "giorni"
2 l.store "Set to 0 to never disable comments", "Usa 0 per non disabilitare mai i commenti"
2 l.store "Max Links", "Max Links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Il blog cancellera' automaticamente commenti e trackbacks che contengono un certo numero di link"
2 l.store "Set to 0 to never reject comments", "Inserisci 0 per accettare sempre i commenti."
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Tuo blog "
2 l.store "Blog name", "Nome blog"
2 l.store "Blog subtitle", "Sottotitolo del blog"
2 l.store "Blog URL", "Indirizzo Blog"
2 l.store "Language", "Lingua"
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Mostra"
2 l.store "articles on my homepage by default", "articoli nella homepage"
2 l.store "articles in my news feed by default", "articoli nei miei rss feed"
2 l.store "Show full article on feed", "Visualizza articolo completo su feed"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", "Ottimizzazione motori di ricerca"
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "Update database now", "Aggiorna il tuo database ora"
2 l.store "may take a moment", "attendi alcuni istanti"
2 l.store "Database migration", "Migrazione del database"
2 l.store "yes", "si"
2 l.store "no", "no"
# app/views/admin/settings/write.html.erb
2 l.store "Send trackbacks", "Invia trackbacks"
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Quando pubblichi gli articoli, e' possibile inviare trackback ai siti di cui fornisci l'url. E' possibile disabilitare questa funzione nel caso di blog privato di cui non si vogliono condividere le informazioni. Per blog pubblici non esiste una necessita' reale di disabilitare questa funzione."
2 l.store "URLs to ping automatically", "Indirizzi da pingare automaticamente"
2 l.store "Drag some plugins here to fill your sidebar", "Trascina alcuni plugins qui per popolare la tua sidebar"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Trascina e rilascia per cambiare gli elementi visualizzati nella sidebar del tuo blog. Per rimuorverli clicca su annulla Cambiamenti perche' comunque non sono salvati automaticamente ma devi cliccare il bottone 'Pubblica'"
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", "Editor dei temi"
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Tema Attivo"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Choose a theme", "Seleziona un tema"
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", ""
2 l.store "Password confirmation", ""
2 l.store "Profile", "Profilo"
2 l.store "User's status", ""
2 l.store "Active", ""
2 l.store "Inactive", ""
2 l.store "Profile Settings", ""
2 l.store "Firstname", ""
2 l.store "Lastname", ""
2 l.store "Nickname", ""
2 l.store "Editor", ""
2 l.store "Use simple editor", ""
2 l.store "Use visual rich editor", ""
2 l.store "Send notification messages via email", "Invia notifiche via mail"
2 l.store "Send notification messages when new articles are posted", "Invia notifiche quando viene pubblicato un nuovo articolo"
2 l.store "Send notification messages when comments are posted", "Invia notifiche quando viene inserito un nuovo commento"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "Your AIM id", ""
2 l.store "display AIM ID on public profile", ""
2 l.store "Your Twitter username", ""
2 l.store "display twitter on public profile", ""
2 l.store "Tell us more about you", ""
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "Veramente eliminare questo utente"
2 l.store "Yes", ""
2 l.store "Users", ""
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "Modifica utente"
# app/views/admin/users/index.html.erb
2 l.store "New User", "Nuovo utente"
2 l.store "Comments", ""
2 l.store "State", ""
2 l.store "%s user", ""
# app/views/admin/users/new.html.erb
2 l.store "Add User", "Aggiungi Utente"
# app/views/articles/_article.html.erb
2 l.store "Posted by", "Scritto da"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "dice"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", ""
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Tuo nome "
2 l.store "Your email", "Tua email"
2 l.store "Your message", "Tuo messaggio"
2 l.store "Comment Markup Help", "Aiuto sul markup dei comemnti"
2 l.store "Preview comment", "Anteprima commento"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "Da"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Nessun articolo trovato"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "sta per dire"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Ci sono"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Commenta"
2 l.store "Trackbacks", ""
2 l.store "Use the following link to trackback from your own site", "Usa il link seguente per fare un trackback dal tuo sito"
2 l.store "RSS feed for this post", "Feed RSS per questo post"
2 l.store "trackback uri", "trackback urk"
2 l.store "Comments are disabled", "Commenti disabilitati"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", ""
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Le impostazioni di seguito agiscono come default quando si sceglie di pubblicare delle risorse con metadati iTunes"
2 l.store "Themes", "Temi"
2 l.store "Things you can do", "Cose che puoi fare"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Questo commento e' stato segnalato per essere moderato. Non apparira' finche' gli amministratori non l'approvano"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!", "Queste opzioni ti permettono di scegliere tra una amministrazione semplice o quella completa, mostrando maggiori opzioni anche complicate da usare. Solo per utenti esperti!!"
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Questo settaggio ti permette di disabilitare i trackbacks sugli articoli. Non rimuovera' i trackback esistenti, ma ti proteggera' in futuro."
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Il blog puo' opzionalmente utilizzare %s come filtro spam. Registrati ad Akismet e reiceverai una chiave API prima di poter utilizzare il loro servizio. Se hai una chiave Akismet, inseriscila qui"
2 l.store "View article on your blog", "Guarda l'articolo sul blog"
2 l.store "View comment on your blog", "Visualizza commento sul blog"
2 l.store "View page on your blog", "Visualizza pagina sul blog"
2 l.store "What can you do ?", "Cosa puoi fare?"
2 l.store "Which settings group would you like to edit", "Quale gruppo di settaggi vuoi modificare "
2 l.store "Write Page", "Creare Pagine"
2 l.store "Write a Page", "Scrivi un pagina"
2 l.store "Write a post", "Scrivere Articoli"
2 l.store "Write an Article", "Scrivi un articolo"
2 l.store "XML Syndication", "XML Syndication"
2 l.store "You are now logged out of the system", "Sei uscito dall'amministrazione"
2 l.store "You can add it to the following categories", "Puoi aggiungerlo alle seguenti categorie"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Puoi disabilitare i commenti non Ajax. Il blog usera' Ajax per l'invio dei commenti se i Javascript sono abilitati, in questo modo i commenti non Ajax saranno bloccati dagli spammer e dagli utenti senza javascript."
2 l.store "add new", "aggiungi nuovo"
2 l.store "by", "da"
2 l.store "log out", "esci"
2 l.store "no ", "no "
2 l.store "on", "su"
2 l.store "seperate with spaces", "séparez-les par des espaces"
653 relevant lines.
653 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("ja_JP") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", "ログインしました"
2 l.store "Login unsuccessful", "ログインに失敗しました"
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", "ログアウトしました"
2 l.store "login", "ログイン"
2 l.store "signup", "サインアップ"
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", "あなたのアカウントではこの操作は許可されていません"
2 l.store "Preview", ""
2 l.store "Article was successfully created", "記事を作成しました"
2 l.store "Article was successfully updated.", "記事が更新されました"
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", "ページが作成されました"
2 l.store "Page was successfully updated.", "ページが更新されました"
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", "プロフィールが更新されました"
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", "コンテントタイプを更新中にエラーが発生しました"
2 l.store "complete", "完了"
2 l.store "File uploaded: ", "アップロードするファイル: "
2 l.store "Unable to upload", "アップロードできません"
2 l.store "Metadata was successfully updated.", "メタデータは正常に更新されました"
2 l.store "Not all metadata was defined correctly.", "いくつかのメタデータが正しく反映されませんでした"
2 l.store "Content Type was successfully updated.", "コンテントタイプは正常に更新されました"
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", "設定は更新されました"
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "キャンセル"
2 l.store "Store", ""
2 l.store "Delete", "削除"
2 l.store "delete", "削除"
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", "選択してください"
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "または"
2 l.store "Save", "保存"
2 l.store "Edit", "編集"
2 l.store "Show", ""
2 l.store "Published", "公開済み"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", "Typoマクロのヘルプを表示"
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", ""
2 l.store "Uploads", "アップロード"
2 l.store "Post settings", "投稿設定"
2 l.store "Publish at", "公開日"
2 l.store "Permalink", "パーマリンク"
2 l.store "Article filter", "記事フィルター"
2 l.store "Save as draft", "下書きとして保存"
# app/views/admin/content/destroy.html.erb
2 l.store "Are you sure you want to delete this article", "本当にこの記事を削除してよろしいですか?"
2 l.store "Delete this article", "この記事を削除"
2 l.store "Articles", "記事"
# app/views/admin/content/index.html.erb
2 l.store "New Article", ""
2 l.store "Search articles that contain ...", "以下の語句を含む記事を検索"
2 l.store "Search", "検索"
2 l.store "Author", "投稿者"
2 l.store "Date", "日付"
2 l.store "Feedback", "フィードバック"
2 l.store "Filter", "フィルター"
2 l.store "Manage articles", "記事の管理"
# app/views/admin/dashboard/_comments.html.erb
2 l.store "Latest Comments", ""
2 l.store "No comments yet", "まだコメントはありません"
2 l.store "By %s on %s", ""
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", "外部からのリンク"
2 l.store "No one made a link to you yet", "まだどこからもリンクされていません"
2 l.store " made a link to you saying ", " からこのようにリンクされています "
2 l.store "You have no internet connection", "インターネットに接続できません"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "ここはこのTypoブログの全体が概観できるページです。ここから%sこと、%sこと、そして%sことができます。"
2 l.store "update your profile or change your password", "プロフィールを編集したりパスワードを変更する"
2 l.store "You can also do a bit of design, %s or %s.", ""
2 l.store "change your blog presentation", ""
2 l.store "enable plugins", ""
2 l.store "write a post", "記事を投稿する"
2 l.store "write a page", "ページを作成する"
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "人気記事"
2 l.store "Nothing to show yet", ""
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", ""
2 l.store "No posts yet, why don't you start and write one", ""
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", ""
2 l.store "Oh no, nothing new", ""
# app/views/admin/dashboard/_welcome.html.erb
2 l.store "Welcome back, %s!", "お帰りなさいませ、%s 様"
2 l.store "%d articles and %d comments were posted since your last connexion", ""
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "サイト全体のフィードバック承認機能を有効にすることができます。有効にするとコメントやトラックバックは承認されるまで表示されません。"
2 l.store "Comments filter", "コメントフィルター"
2 l.store "Enable gravatars", "Gravatarを有効にする"
2 l.store "Show your email address", "メールアドレスを表示"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "新しい記事やコメントが投稿された場合に通知を送ることができます"
2 l.store "Source Email", "メールアドレス"
2 l.store "Email address used by Typo to send notifications", "通知の送信先メールアドレス"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "スパムプロテクションを有効にすると、投稿者のIPアドレスおよびその投稿内容をローカル、リモート両方のブラックリストと比較します"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typoはオプションで%sスパムフィルタリングサービスを利用できます。これらのサービスを使用するにはAkismetに登録し、APIキーを取得する必要があります。すでにAkismetキーをお持ちであればここに入力してください"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "この設定はすでにあるトラックバックを削除しませんが、新しく追加しようとするトラックバックを防ぐことができます。"
2 l.store "Set to 0 to never disable comments", "コメントを不許可にしない場合は0を設定してください"
2 l.store "Max Links", "最大のリンク数"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typoは指定された数のリンクが含まれているコメントやトラックバックを自動的に拒否します"
2 l.store "Set to 0 to never reject comments", "コメントを拒否しない場合は0を設定してください"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "あなたのブログ"
2 l.store "Blog name", "ブログ名"
2 l.store "Blog subtitle", "ブログサブタイトル"
2 l.store "Blog URL", "ブログURL"
2 l.store "Language", "言語"
2 l.store "Allow users to register", "ユーザーに登録させる"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "ユーザーがこのブログに登録するのを許可できます。デフォルトでユーザーは自分自身のプロフィールを編集する以外の権限を持たないcontributorとして登録されます。ユーザーに登録させたくない場合は、管理者であるあなた自らがユーザーを追加することができます。"
2 l.store "Items to display in admin lists", "管理リストに表示する行数"
2 l.store "Publishing options", ""
2 l.store "Display", "表示"
2 l.store "articles on my homepage by default", "ホームページのデフォルト記事数"
2 l.store "articles in my news feed by default", "RSSフィードのデフォルト記事数"
2 l.store "Show full article on feed", "記事の全文をフィードに表示"
2 l.store "Feedburner ID", ""
2 l.store "General settings", "一般設定"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", "このボックスのチェックを外すと、全てのカテゴリのページに<code>noindex, follow</code>のMETAタグを付与します。すると検索エンジンからそれらのページが削除され、コンテンツ重複の防止になります"
2 l.store "Index tags", "タグのインデックス"
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "このボックスのチェックを外すと、全てのタグのページに<code>noindex, follow</code>のMETAタグを付与します。すると検索エンジンからそれらのページが削除され、コンテンツ重複の防止になります"
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "記事が公開されると、Typoはリンクしたページへトラックバックを送信します。非公開ブログの場合は公開されたブログへ情報が漏れないようにこのチェックボックスを非選択にしてください。公開ブログの場合は非選択にする必要はありません。"
2 l.store "URLs to ping automatically", "自動的にPingを送信するURL"
2 l.store "Latitude, Longitude", "緯度、経度"
2 l.store "your lattitude and longitude", "あなたの緯度、経度"
2 l.store "exemple", "例"
2 l.store "Write", "新規作成"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "プラグインがインストールされていません"
# app/views/admin/sidebar/_publish.html.erb
2 l.store "Changes published", "変更して公開"
# app/views/admin/sidebar/_target.html.erb
2 l.store "Drag some plugins here to fill your sidebar", "サイドバーで利用するプラグインをドラッグしてください"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "ブログに表示するサイドバー項目をドラッグ&ドロップで変更してください。サイドバーから項目を削除した場合はすぐに変更が保存されますが、「公開」ボタンを押すまでは有効になりません。"
2 l.store "Available Items", "利用可能な項目"
2 l.store "Active Sidebar items", "有効なサイドバー項目"
2 l.store "Get more plugins", "他のプラグインの入手"
2 l.store "Sidebar", "サイドバー"
2 l.store "Publish changes", "変更を公開"
# app/views/admin/tags/_form.html.erb
2 l.store "Display name", "表示名"
# app/views/admin/tags/destroy.html.erb
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", "表示名"
2 l.store "Manage tags", "タグの管理"
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", "テーマカタログ"
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", "テーマエディタ"
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "現在のテーマ"
2 l.store "Get more themes", "他のテーマの入手"
2 l.store "You can download third party themes from officially supported %s ", "公式サイト%sからサードパーティのテーマをダウンロードできます。"
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", "テーマをインストールするには、アプリケーションのthemes/ディレクトリに任意のテーマのフォルダをアップロードしてください。そうすればそのテーマをこのページで閲覧することができます。"
2 l.store "display twitter on public profile", "公開プロフィールにTwitter IDを表示"
2 l.store "Tell us more about you", "補足事項"
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "本当にユーザーを削除"
2 l.store "Yes", "はい"
2 l.store "Users", "ユーザー"
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "ユーザー編集"
# app/views/admin/users/index.html.erb
2 l.store "New User", "新規ユーザー"
2 l.store "Comments", "コメント"
2 l.store "State", "状態"
2 l.store "%s user", "%s"
# app/views/admin/users/new.html.erb
2 l.store "Add User", "ユーザーの追加"
# app/views/articles/_article.html.erb
2 l.store "Posted by", "投稿者"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "発言"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "このコメントはモデレーターの確認が必要です。モデレーターが確認後にコメントが表示されます。"
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "あなたの名前"
2 l.store "Your email", "あなたのemail"
2 l.store "Your message", "メッセージ"
2 l.store "Comment Markup Help", "コメントのマークアップヘルプ"
2 l.store "Preview comment", "前のコメント"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "From"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "記事が見つかりませんでした"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "〜について言う"
# app/views/articles/groupings.html.erb
2 l.store "There are", "ここに"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "コメントを書く"
2 l.store "Trackbacks", "トラックバック"
2 l.store "Use the following link to trackback from your own site", "トラックバックリンク"
2 l.store "RSS feed for this post", "この記事のRSSフィード"
2 l.store "trackback uri", "トラックバックURL"
2 l.store "Comments are disabled", "コメントは許可されていません"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", "ダッシュボード"
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "See help text for this filter", "このフィルターのヘルプを見る"
2 l.store "Sep", "9月"
2 l.store "September", "9月"
2 l.store "Set iTunes metadata for this enclosure", "このリソースにiTunesのメタデータをセット"
2 l.store "Setting for channel", "チャンネル設定"
2 l.store "Show Help", "ヘルプを表示"
2 l.store "Show this article", "この記事を表示"
2 l.store "Show this category", "カテゴリ表示"
2 l.store "Show this comment", "このコメントを表示"
2 l.store "Show this page", "このページを表示"
2 l.store "Show this pattern", "パターンを表示"
2 l.store "Show this user", "このユーザーを表示"
2 l.store "Statistics", "統計データ"
2 l.store "String", "文字列"
2 l.store "Subtitle", "サブタイトル"
2 l.store "Summary", "サマリー"
2 l.store "Sun", "日"
2 l.store "Sunday", "日曜日"
2 l.store "Sweep cache", "キャッシュをクリア"
2 l.store "System information", "システム情報"
2 l.store "Text Filter Details", "テキストフィルター詳細"
2 l.store "Text Filters", "テキストフィルター"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "以下の項目は、公開を選択した場合にデフォルトのiTunesのメタデータとして設定されます"
2 l.store "Themes", "テーマ"
2 l.store "There are %d entries in the page cache", "ページキャッシュに%d個の記事があります"
2 l.store "Thu", "木"
2 l.store "Thursday", "木曜日"
2 l.store "Tue", "火"
2 l.store "Tuesday", "火曜日"
2 l.store "Type", "タイプ"
2 l.store "Typo documentation", "Typoドキュメント"
2 l.store "Update your profile or change your password", "プロファイルを更新するか、パスワードを変更してください"
2 l.store "Upload a new File", "新規ファイルをアップロード"
2 l.store "Upload a new Resource", "新しいリソースをアップロード"
2 l.store "Uploaded", "アップロード"
2 l.store "User's articles", "ユーザーの記事"
2 l.store "View article on your blog", "ブログで記事を確認"
2 l.store "View comment on your blog", "ブログにコメントを表示"
2 l.store "View page on your blog", "ブログでページを確認"
2 l.store "Wed", "水"
2 l.store "Wednesday", "水曜日"
2 l.store "What can you do ?", "なにができますか?"
2 l.store "Write Page", "ページを作成"
2 l.store "Write Post", "記事を書く"
2 l.store "Write a Page", "ページを書く"
2 l.store "Write an Article", "記事を書く"
2 l.store "You are now logged out of the system", "システムからログアウトしました"
2 l.store "You can add it to the following categories", "以下のカテゴリへ追加することができます"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "オプションでAjaxでないコメントを不許可にすることができます。Javascriptが有効な場合、Typoは常にコメントの受け渡しにAjaxを使います。つまりAjaxでないコメントはJavascriptを有効にしていないユーザーのものか、スパマーのものかのどちらかでしょう。"
2 l.store "add new", "新規追加"
2 l.store "by", "by"
2 l.store "log out", "ログアウト"
2 l.store "no ", "no "
2 l.store "on", "の"
2 l.store "published", "公開済み"
2 l.store "save", "保存"
2 l.store "seperate with spaces", "スペースで分ける"
2 l.store "unpublished", "未公開"
2 l.store "via email", "email経由"
2 l.store "your blog", "ブログ"
end
lang/lt_LT.rb
100.0 % covered
627 relevant lines.
627 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("lt_LT") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", ""
2 l.store "complete", ""
2 l.store "File uploaded: ", ""
2 l.store "Unable to upload", ""
2 l.store "Metadata was successfully updated.", ""
2 l.store "Not all metadata was defined correctly.", ""
2 l.store "Content Type was successfully updated.", ""
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", ""
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Baigti" # tik ne i kelnes :)
2 l.store "Store", ""
2 l.store "Delete", "Trinti"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "arba"
2 l.store "Save", "Saugoti"
2 l.store "Edit", "Redaguoti"
2 l.store "Show", ""
2 l.store "Published", "Publikuotas"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "Atgal į peržiūrą"
2 l.store "Name", "Vardas"
2 l.store "Description", "Beschreibung"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "nėra komentarų"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "nėra dienoraščio nuorodų"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "Žymės"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
# app/models/feedback/states.rb
2 l.store "Unclassified", ""
2 l.store "Just Presumed Ham", ""
2 l.store "Ham?", ""
2 l.store "Just Marked As Ham", ""
2 l.store "Ham", ""
2 l.store "Spam?", ""
2 l.store "Just Marked As Spam", ""
2 l.store "Spam", ""
# app/views/accounts/login.html.erb
2 l.store "I've lost my password", ""
2 l.store "Login", "Prisijungimas"
2 l.store "Password", "slaptažodis"
2 l.store "Remember me", ""
2 l.store "Submit", ""
2 l.store "Back to ", ""
# app/views/accounts/recover_password.html.erb
2 l.store "Username or email", ""
# app/views/accounts/signup.html.erb
2 l.store "Create an account", ""
2 l.store "Username", "Vartotojo vardas"
2 l.store "Email", "El. pašto adresas"
2 l.store "Signup", "Registracija"
# app/views/admin/categories/_categories.html.erb
2 l.store "Title", "Pavadinimas"
2 l.store "Reorder", "Rikiuoti"
2 l.store "Sort alphabetically", "Rikiuoti pagal abėcėlę"
# app/views/admin/categories/_form.html.erb
2 l.store "Keywords", ""
# app/views/admin/categories/destroy.html.erb
2 l.store "Are you sure you want to delete the category ", "Ar tikrai nori ištrinti šią kategoriją : "
2 l.store "Delete this category", "Trinti šią kategoriją"
2 l.store "Categories", ""
# app/views/admin/categories/index.html.erb
2 l.store "New Category", ""
# app/views/admin/categories/new.html.erb
2 l.store "%s Category", ""
# app/views/admin/categories/reorder.html.erb
2 l.store "(Done)", "(Baigta)"
# app/views/admin/content/_attachment.html.erb
2 l.store "Remove", "Pašalinti"
2 l.store "Currently this article has the following resources", "Šiuo metu straipsnis turi šiuos resursus"
2 l.store "You can associate the following resources", "Jūs galite susieti su šiais resursais"
2 l.store "Show your email address", "Ihre Email Adresse anzeigen"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo kann Sie benachrichtigen, wenn neue Artikel oder Kommentare angelegt werden"
2 l.store "Source Email", "Email Adresse"
2 l.store "Email address used by Typo to send notifications", "Email Adresse, die Typo beim Versenden von Benachrichtigungen verwenden soll"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Bei Aktivierung des Spamschutzes wird Typo sowohl die IP Adresse des Autors als auch den Inhalt seiner Veröffentlichung gegen lokale und entfernte Blacklisten vergleichen. Gute Abwehr von Spambots"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo kann (optional) den %s Spam-Filterdienst verwenden. Sie müssen sich dort registriert und einen API Key erhalten haben, bevor Sie diesen Dienst nutzen können. Wenn Sie einen solchen Key haben, geben Sie ihn hier ein"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Diese Option erlaubt es Ihnen, Trackbacks für alle Artikel im gesamten Blog zu deaktivieren. Dadurch werden zwar keine bereits existierenden Trackbacks entfernt, aber alle zukünftig irgendwo in Ihrem Blog eintreffenden Trackbacks werden abgewiesen."
2 l.store "Set to 0 to never disable comments", "Wert 0 bewirkt, dass die Möglichkeit für Kommentare immer bestehen bleibt"
2 l.store "Max Links", "Maximale Anzahl Links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo kann automatisch Kommentare und Trackbacks abweisen, die mehr als eine bestimmte Anzahl von Links enthalten"
2 l.store "Set to 0 to never reject comments", "Wert 0 bewirkt, dass Kommentare nie abgewiesen werden"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Rodyti"
2 l.store "articles on my homepage by default", "straipsniai pradžioje pagal nutylėjimą"
2 l.store "articles in my news feed by default", "straipsniai naujienų sraute pagal nutylėjimą"
2 l.store "Show full article on feed", "Rodyti pilną straipsnį RSS sraute"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", ""
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Publikuojant straipsnius Typo gali siųsti dienoraščių nuorodas į puslapius, į kuriuos jūs rodote. Tai gali būti išjungta ant privačių dienoraščių, bet viešuose nėra priežasties išjungti šio nustatymo" # need fix
2 l.store "URLs to ping automatically", "URL adresai į kuriuos pranešti automatiškai"
2 l.store "Drag some plugins here to fill your sidebar", "Ziehen Sie Plugins hierher, um sie in die Seitenleiste aufzunehmen"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Verwenden Sie Drag&Drop, um die Einträge der Seitenleiste ihres Blogs zu ändern. Um Einträge zu löschen, klicken Sie auf 'remove'. Änderungen sind hier sofort sichtbar, werden aber erst permanent aktiviert, wenn Sie 'Änderungen veröffentlichen' klicken."
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Aktives Motiv"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Choose a theme", "Motiv auswählen"
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", ""
2 l.store "Password confirmation", ""
2 l.store "Profile", ""
2 l.store "User's status", ""
2 l.store "Active", ""
2 l.store "Inactive", ""
2 l.store "Profile Settings", ""
2 l.store "Firstname", ""
2 l.store "Lastname", ""
2 l.store "Nickname", ""
2 l.store "Editor", ""
2 l.store "Use simple editor", ""
2 l.store "Use visual rich editor", ""
2 l.store "Send notification messages via email", "Benachrichtigung via Email schicken"
2 l.store "Send notification messages when new articles are posted", "Benachrichtigung schicken, wenn neue Artikel veröffentlicht werden"
2 l.store "Send notification messages when comments are posted", "Benachrichtigung schicken, wenn neue Kommentare eintreffen"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Komentaras laukia moderatoriaus patvirtinimo" # sutrumpinua, man rodos logiskaiu
2 l.store "See help text for this filter", "Hilfe für diesen Filter"
2 l.store "Set iTunes metadata for this enclosure", "iTunes Metadaten für diesen Anhang festlegen"
2 l.store "Setting for channel", "Kanaloptionen"
2 l.store "Settings", "Nustatymai"
2 l.store "Show Help", "Hilfe"
2 l.store "Show this article", "Rodyti šį straipsnį"
2 l.store "Show this category", "Rodyti šią kategoriją"
2 l.store "Show this comment", "Rodyti šį komentarą"
2 l.store "Show this page", "Diese Seite anzeigen"
2 l.store "Show this pattern", "Rodyti šį šabloną"
2 l.store "Show this user", "Diesen Benutzer anzeigen"
2 l.store "Spam Protection", "Spamo apsauga"
2 l.store "Spam protection", "Spamschutz"
2 l.store "String", "Eilutė"
2 l.store "Subtitle", "Untertitel"
2 l.store "Summary", "Zusammenfassung"
2 l.store "Text Filter Details", "Details zum Textfilter"
2 l.store "Text Filters", "Textfilter"
2 l.store "Textfilter", "Teksto filtras"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Folgende Einstellungen wirken als Voreinstellungen, wenn Sie einen Anhang mit iTunes Metadaten veröffentlichen"
2 l.store "There are %d entries in the cache", "Es sind %d Einträge im Cache"
2 l.store "Things you can do", "Jūs galite daryti ..."
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!","This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!" #Need translate
2 l.store "Upload a new File", "Eine neue Datei hochladen"
2 l.store "Upload a new Resource", "Eine neue Ressource hochladen"
2 l.store "Uploaded", "Upload beendet"
2 l.store "User's articles", "Artikel des Benutzers"
2 l.store "View article on your blog", "Rodyti straipsnį dienoraštyje"
2 l.store "View comment on your blog", "Rodyti komentarą dienoraštyje"
2 l.store "View page on your blog", "Seite in Ihrem Blog anschauen"
2 l.store "Which settings group would you like to edit", "Kurią nustatymų grupę norėtum redaguoti"
2 l.store "Write a Page", "Kurti puslapį"
2 l.store "Write an Article", "Kurti straipsnį"
2 l.store "XML Syndication", "XML Syndikat"
2 l.store "You are now logged out of the system", "Jūs esate prisijungęs prie sistemos"
2 l.store "You can add it to the following categories", "Jūs galite pridėti jį į sekančias kategorijas"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Sie können die Moderation von Kommentaren auf der gesamten Website aktivieren. Dann erscheinen keine Kommentare oder Trackbacks in Ihrem Blog, die sie nicht überprüft haben"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Sie können optional non-Ajax Kommentare verbieten. Typo verwendet immer Ajax für die Übertragung von Kommentaren, sofern Javascript eingeschaltet ist. non-Ajax Kommentare stamme somit entweder von Spammern oder von Anwendern ohne aktiviertes Javascript."
2 l.store "by", "bei"
2 l.store "log out", "Atsijungti"
2 l.store "on", "įjungta"
2 l.store "seperate with spaces", "mit Leerzeichen trennen"
754 relevant lines.
754 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("nb_NO") do |l|
# Available languages
2 l.store "da_DK", "Dansk"
2 l.store "de_DE", "Tysk"
2 l.store "en_US", "Engelsk (Amerikansk)"
2 l.store "es_MX", "Spansk (Mexikansk)"
2 l.store "fr_FR", "Fransk"
2 l.store "he_IL", "Hebraisk"
2 l.store "it_IT", "Italiensk"
2 l.store "ja_JP", "Japansk"
2 l.store "lt_LT", "Litauansk"
2 l.store "nb_NO", "Norsk"
2 l.store "nl_NL", "Hollandsk"
2 l.store "pl_PL", "Polsk"
2 l.store "ro_RO", "Rumensk"
2 l.store "zh_TW", "Kinesisk"
# app/controllers/accounts_controller.rb
2 l.store "Login successful", "Logget inn"
2 l.store "Login unsuccessful", "Feil under innlogging"
2 l.store "An email has been successfully sent to your address with your new password", "En epost er sendt til din adresse med ditt nye passord"
2 l.store "Oops, something wrong just happened", "Ojsann, noe gikk galt"
2 l.store "Successfully logged out", "Logget ut"
2 l.store "login", "Logg inn"
2 l.store "signup", "Registrer"
2 l.store "Recover your password", "Gjenopprett passord"
# app/controllers/admin/cache_controller.rb
2 l.store "Cache was successfully sweeped", "Cache er kostet rent (sweeped)"
2 l.store "Oops, something wrong happened. Cache could not be cleaned", "Ojsann, noe galt hendte. Cache kunne ikke rengjøres"
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", "Kategori lagret"
2 l.store "Category could not be saved.", "Kan ikke lagre kategori"
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", "Du har ikke tillatelse til å utføre denne handlingen"
2 l.store "This article was deleted successfully", "Artikkelen er slettet"
2 l.store "Preview", "Forhåndsvisning"
2 l.store "Article was successfully created", "Artikkel opprettet"
2 l.store "Article was successfully updated.", "Artikkel oppdatert"
# app/controllers/admin/dashboard_controller.rb
2 l.store "You are late from at least one major version of Typo. You should upgrade immediately. Download and install %s", "Du bruker en gammel versjon av Typo. Du bør oppgradere snarest. Last ned og installer %s"
2 l.store "the latest Typo version", "den siste versjonan av Typo"
2 l.store "There's a new version of Typo available which may contain important bug fixes. Why don't you upgrade to %s ?", "Det finnes en ny versjon av Typo som kan inneholde viktige feilrettelser. Hva med å oppgradere til %s?"
2 l.store "There's a new version of Typo available. Why don't you upgrade to %s ?", "Det finnes en ny versjon av Typo. Hva med å oppgradere til %s?"
2 l.store "Please review and save the settings before continuing", "Vennligst les igjennom og lagre innstillingene før du fortsetter"
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", "Noe gikk galt. Kanskje en av dine sidekolonner mangler og du burde reinstallere den eller fjerne den manuelt"
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", "Tag oppdatert"
2 l.store "Destroy this draft", "Slett dette utkastet"
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", "Vis samtale"
2 l.store "Flag as %s", "Flagg som %s"
# app/helpers/application_helper.rb
2 l.store "%%d. %%b", ""
2 l.store "Are you sure you want to delete this %s?", "Er du sikker på at du vil slette denne %s?"
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%d comments", "%d kommentarer"
2 l.store "no comments", "ingen kommentarer"
2 l.store "1 comment", "1 kommentar"
2 l.store "no trackbacks", "ingen trackbacks"
2 l.store "1 trackback", "1 trackback"
2 l.store "%d trackbacks", "%d trackbacks"
2 l.store "at", "klokken"
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%title%%", "Du må bruke et permalenkeformat med identifikator: %%title%%"
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Kan ikke slutte på .rss eller .atom. Disse er reserverte for feed-URLer"
# app/models/feedback/states.rb
2 l.store "Unclassified", "Uklassifisert"
2 l.store "Just Presumed Ham", "Kun antatt Ham"
2 l.store "Ham?", "Ham?"
2 l.store "Just Marked As Ham", "Kun markert som Ham"
2 l.store "Ham", "Ham"
2 l.store "Spam?", "Spam?"
2 l.store "Just Marked As Spam", "Kun markert som Spam"
2 l.store "Spam", "Spam"
# app/views/accounts/login.html.erb
2 l.store "Login", "Logg inn"
2 l.store "Password", "Passord"
2 l.store "Remember me", "Husk meg"
2 l.store "Submit", "Send inn"
# app/views/accounts/recover_password.html.erb
2 l.store "Username or email", "Brukernavn eller epost"
2 l.store "Reset my password", "Nullstill passordet mitt"
# app/views/accounts/signup.html.erb
2 l.store "Username", "Brukernavn"
2 l.store "Email", "Epost"
2 l.store "Signup", "Registrer"
# app/views/admin/cache/index.html.erb
2 l.store "To save resources Typo caches content in static files. Cache is cleared each time something gets published. You may however want to clear the cache by yourself",
"For å lagre resurser cacher Typo innholdet i statiske filer. Cachen slettes hver gang noe publiseres. Du kan også velge å slette cachen selv."
2 l.store "There are currently %d files in cache for a total amount of %d Kb", "Det finnes for øyeblikket %d filer i cachen som utgjør totalt %d kB"
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", "Utdrag er oppsummeringer som vises på bloggsiden, men ikke i artikkelen"
2 l.store "Uploads", "Opplastede filer"
2 l.store "Post settings", "Postinnstillinger"
2 l.store "Publish at", "Offentliggjort den"
2 l.store "Article filter", "artikkelfilter"
2 l.store "Save as draft", "Lagre som utkast"
# app/views/admin/content/destroy.html.erb
2 l.store "Are you sure you want to delete this article", "Er du sikker på du vil slette denne artikkelen"
2 l.store "Delete this article", "Slett denne artikkelen"
2 l.store "No one made a link to you yet", "Ingen har lenket til deg"
2 l.store "made a link to you on", "opprettet en lenke til deg den"
2 l.store "You have no internet connection", "Du har ingen internettforbindelse"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "Dette stedet gir deg en rask oversikt over hva som foregår på din Typo-blogg og hva du kan gjøre. Kanskje du ønsker å %s, %s eller %s."
2 l.store "update your profile or change your password", "oppdatere profilen din eller endre passordet ditt"
2 l.store "You can also do a bit of design, %s or %s.", "Du kan også tilpasse utseendet, %s eller %s."
2 l.store "change your blog presentation", "endre utseende på bloggen din"
2 l.store "enable plugins", "aktivere plugins"
2 l.store "If you need help, %s. You can also browse our %s or %s to customize your Typo blog.", "Hvis du behøver hjelp, %s. Du kan også se gjennom vår %s eller %s for å tilpasse Typo-bloggen din."
2 l.store "RSS description message", "Melding for RSS-beskrivelse"
2 l.store "Indexing", "Indekserer"
2 l.store "Do not index categories", "Ikke indekser kategorier"
2 l.store "Checking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Do not index tags", "Ikke indekser tagger"
2 l.store "Checking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", "Robots.txt"
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", "Din robots.txt er ikke skrivbar. Typo vil ikke kunne skrive til den"
2 l.store "Use dofollow in comments", "Bruk dofollow i kommentarer"
2 l.store "Maybe you want to moderate feedbacks when turning this on", "Kanskje du ønsker å moderere feedbacks når du slår på denne"
2 l.store "at the bottom of each of your post in the RSS feed", "på bunnen av hver artikkel i RSS-feeden"
# app/views/admin/seo/permalinks.html.erb
2 l.store "Format of permalink", "Permalinkformat"
2 l.store "Typo offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links.", "Typo tilbyr deg muligheten til å opprette en tilpasset URL-struktur for dine permalenker og arkiver. Dette kan forbedre estetikken, brukervennligheten og foroverkompatibiliteten til dine lenker."
2 l.store "You can custom your URL structure using the following tags:", "Du kan tilbasse URL-strukturen din ved å bruke følgende tags:"
2 l.store "your article slug. <strong>Using this slug is mandatory</strong>.", "Din artikkel-slug. <strong>Det er påkrevd å bruke denne slug</strong>."
2 l.store "your article year of publication.", "din artikkels publiseringsår"
2 l.store "your article month of publication.", "din artikkels publiseringmåned"
2 l.store "your article day of publication.", "din artikkels publiseringsdag"
2 l.store "Permalinks", "Permalenker"
# app/views/admin/seo/titles.html.erb
2 l.store "Title settings", "Tittelinnstillinger"
2 l.store "Title template", "Mønster for tittel"
2 l.store "Description template", "Mønster for beskrivelse"
2 l.store "Help on title settings", "Hjelp med tittelinnstillinger"
2 l.store "Replaced with the title of the article/page", "Erstatted med tittelen til artikkelen/siden"
2 l.store "The blog's name", "Bloggens navn"
2 l.store "The blog's tagline / description", "Bloggens undertittel/beskrivelse"
2 l.store "Replaced with the post/page excerpt", "Erstattet med utdrag fra artikkelen/siden"
2 l.store "Replaced with the article tags (comma separated)", "Erstattet med artikkelens tags (kommaseparert)"
2 l.store "Replaced with the article categories (comma separated)", "Erstattet med artikkelens kategorier (kommaseparert)"
2 l.store "Replaced with the article/page title", "Erstattet med artikkelens/sidens tittel"
2 l.store "Replaced with the category/tag name", "Erstattet med kategori-/tagnavn"
2 l.store "Replaced with the current search phrase", "Erstattet med nåværende søketekst"
2 l.store "Replaced with the current time", "Erstattet med nåværende tid"
2 l.store "Replaced with the current date", "Erstattet med nåværende dato"
2 l.store "Replaced with the current month", "Erstattet med nåværende måned"
2 l.store "Replaced with the current year", "Erstattet med nåværende år"
2 l.store "Replaced with the current page number", "Erstattet med nåværende sidetall"
2 l.store "Replaced by the archive date", "Erstattet av arkivdato"
2 l.store "Titles", "Titler"
# app/views/admin/settings/feedback.html.erb
2 l.store "Enable comments by default", "Aktiver kommentarer som standard"
2 l.store "Enable Trackbacks by default", "Aktiver Trackbacks som standard"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Du kan aktivere feedback-moderering for hele siden. Dersom du gjør det vil ingen kommentarer eller trackbacks vises på bloggen din uten at du har godkjent dem"
2 l.store "Comments filter", "Kommentarfilter"
2 l.store "Avatars provider", "Avatartilbyder"
2 l.store "Show your email address", "Vis din epostadresse"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here"
2 l.store "Disable trackbacks site-wide", "Deaktiver Trackbacks på hele siden"
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Denne innstillingen gir deg mulighet for å daktivere Trackbacks for hver artikkel i bloggen din. Eksisterende Trackbacks vil ikke fjernes, men det vil forhindre nye forsøk på å legge til Trackbacks over hele bloggen din."
2 l.store "Set to 0 to never disable comments", "Sett til 0 for å aldri deaktivere kommentarer"
2 l.store "Max Links", "Maks antall lenker"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them"
2 l.store "Set to 0 to never reject comments", "Sett til 0 for å aldri forkaste kommentarer"
2 l.store "Enable reCaptcha", "Aktiver reCaptcha"
2 l.store "Remember to set your reCaptcha keys inside config/initializers/recaptcha.rb", "Husk å sette reCaptcha-nøklene dine i filen config/initializers/recaptcha.rb"
2 l.store "Blog subtitle", "Undertittel for blogg"
2 l.store "Blog URL", "Bloggadresse"
2 l.store "Language", "Språk"
2 l.store "Allow users to register", "Tillat brukere å registrere seg"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "Du kan tillate brukere å registrere seg på bloggen din. Som standard vil de registreres som bidragsytere, et upriviligert kontonivå som kun gir dem en egen profil på websiden. Dersom du ikke ønsker at brukere skal kunne registrere seg, så kan du legge dem til selv under brukerkontoer."
2 l.store "Typo can notify you when new articles or comments are posted", "Typo kan gi deg beskjed når nye artikler eller kommentarer er mottatt"
2 l.store "Source Email", "Epostavsender"
2 l.store "Email address used by Typo to send notifications", "Epostadresse som brukes av Typo til å sende beskjeder"
2 l.store "Items to display in admin lists", "Enheter å vise i adminlisten"
2 l.store "articles on my homepage by default", "artikler på min hjemmeside som standard"
2 l.store "articles in my news feed by default", "artikler i min nyhetsfeed som standard"
2 l.store "Show only article excerpt on feed", "Vis bare artikkelens utdrag i feed"
2 l.store "Feedburner ID", "Feedburner ID"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", "Du kan bruke din Gooogle Feedburner-konto istedet for Typo feed URL. For å aktivere dette, fyll ut dette skjemaet med din Feedburner ID."
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Når du publiserer artikler kan Typo sende trackbacks til de hjemmesider du lenker til. Dette bør deaktiveres for private blogger da det ellers kan lekke privat informasjion til hjemmesider du diskuterer. For offentlige blogger, er det ingen reell mening i å deaktivere dette."
2 l.store "URLs to ping automatically", "Nettadresser som skal pinges automatisk"
2 l.store "Drag some plugins here to fill your sidebar", "Dra og slipp plugins hit for å populere sidebar"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Dra og slipp for at Dra og slipp innholdsendreen der vises på denne blog. Du kan fjerne elementer fra oversiktsoversikten bare ved at klikke fjern. endringer gemmes med det samme, men ikke aktiveret, før du klikker på 'Offentliggør' knappen."
2 l.store "Get more plugins", "Hent flere plugins"
2 l.store "Sidebar", ""
2 l.store "Publish changes", "Publiser endringer"
# app/views/admin/tags/destroy.html.erb
2 l.store "Are you sure you want to delete the tag", "Er du sikker på at du vil slette denne taggen"
2 l.store "Delete this tag", "Slett denne taggen"
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", "Redigerer"
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", "Visningsnavn"
2 l.store "Manage tags", "Behandle tags"
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", "Beklager, men temakatalogen er ikke tilgjengelig"
2 l.store "Theme catalogue", "Temakatalog"
# app/views/admin/themes/editor.html.erb
2 l.store "Stylesheets", ""
2 l.store "Layout", ""
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Aktivt tema"
2 l.store "Chose this theme", "Velg dette temaet"
2 l.store "Get more themes", "Hent flere temaer"
2 l.store "You can download third party themes from officially supported %s ", "Du kan laste ned tredjepartstemaer fra offisielt støttede %s "
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", "For å installere et tema må du laste opp temakatalogen til themes-katalogen til Typo. Når et tema er lastet opp, vil du se det på denne siden."
2 l.store "display twitter on public profile", "Vis Twitter på din profil"
2 l.store "Tell us more about you", "Fortell litt mer om deg selv"
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "Vil du virkelig slette brukeren"
2 l.store "Yes", "Ja"
2 l.store "Users", "Brukere"
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "Rediger bruker"
# app/views/admin/users/index.html.erb
2 l.store "New User", "Ny bruker"
2 l.store "Comments", "Kommentarer"
2 l.store "State", "Tilstand"
2 l.store "%s user", "% bruker"
# app/views/admin/users/new.html.erb
2 l.store "Add User", "Legg til bruker"
# app/views/articles/_article.html.erb
2 l.store "Posted by", "Skrevet av"
# app/views/articles/_article_excerpt.html.erb
2 l.store "Continue reading", "Fortsett å lese"
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", "Ojsann, noe galt skjedde. Kommentaren ble ikke lagret"
# app/views/articles/_comment_form.html.erb
2 l.store "Your name", "Ditt navn"
2 l.store "Your email", "Din epost"
2 l.store "Your message", "Din beskjed"
2 l.store "Comment Markup Help", "Hjelp med markup for kommentar"
2 l.store "Preview comment", "Vis eksempel på kommentar"
2 l.store "leave url/email", "legg igjen URL/epost"
# app/views/articles/_comment_list.html.erb
2 l.store "No comments", "Ingen kommentarer"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Fant ingen artikler"
2 l.store "posted in", "postet i"
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "vil snart si"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Det er"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Skriv en kommentar"
2 l.store "Trackbacks", ""
2 l.store "Use the following link to trackback from your own site", "Bruk følgende lenke for å opprette trackback fra din egen side"
2 l.store "RSS feed for this post", "RSS-feed for denne artikkel"
2 l.store "trackback uri", "Trackback URI"
2 l.store "Comments are disabled", "Kommentarer er deaktiveret"
# app/views/authors/show.html.erb
2 l.store "Website:", "Hjemmeside:"
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", "Om %s"
2 l.store "This author has not published any article yet", "Forfatteren har ikke publisert noen artikler enda"
# app/views/comments/_comment.html.erb
2 l.store "said", "sa"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Denne kommentaren har blitt flagget for godkjenning av moderator. Den vil ikke bli vist på bloggen før moderatoren godkjenner den."
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", "Denne kommentaren har blitt flagget for godkjenning av moderator."
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", "bruker med stolthet"
2 l.store "Dashboard", ""
# app/views/setup/index.html.erb
2 l.store "Welcome", "Velkommen"
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", "Velkommen til din %s bloggoppsett. Bare fyll inn bloggtittel og epostadressen din, så vil Typo ta seg av resten"
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", "Gratulerer!"
2 l.store "You have successfully signed up", "Du er nå registrert"
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "Ikke mist eposten som ble sendt %s. Uten passordet vil du ikke kunne logge inn senere"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Innstillingene under er standard når du velger å publisere et vedlegg med iTunes metadata"
2 l.store "There are %d entries in the cache", "Det er %d objekter i cachen"
2 l.store "Things you can do", "Ting du kan gjøre"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!", "Dette valget lar deg velge mellom et enkelt eller et komplett administrasjonsgrensesnitt. Det komplette viser mange flere valg og kan derfor være vanskeligere å bruke. Kun for avanserte brukere!"
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", "Avmerking av denne boksen vil legge til <code>noindex, follow</code> meta tags i hver kategoriside, som fjerner dem fra søkemotorer og motvirker problemer som skyldes duplisert innhold"
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "Avmerking av denne boksen vil legge til <code>noindex, follow</code> meta tags i hver tagsside, som fjerner dem fra søkemotorer og motvirker problemer som skyldes duplisert innhold"
2 l.store "Upload a new File", "Upload en ny fil"
2 l.store "Upload a new Resource", "Upload en ny ressource"
2 l.store "Uploaded", "Uploaded"
2 l.store "User's articles", "brukerens artikler"
2 l.store "View article on your blog", "Vis artikkel på din blog"
2 l.store "View comment on your blog", "Vis kommentar på din blog"
2 l.store "View page on your blog", "Vis denne side på din blog"
2 l.store "Which settings group would you like to edit", "Hvilke innstillinger vil du gerne redigere"
2 l.store "Write a Page", "Skriv en side"
2 l.store "Write an Article", "Skriv en artikkel"
2 l.store "XML Syndication", "XML Syndikat"
2 l.store "You are now logged out of the system", "Du er nu logget af systemet"
2 l.store "You can add it to the following categories", "Du kan tilføje følgende kategorier"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Du kan slå feedback moderation til for hele bloggen. Hvis du gør dette kommer kommentarer og trackbacks først frem når du har godkendt dem"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Du kan valgfritt deaktivere non-AJAX-kommentarer. Typo vil alltid bruke AJAX for kommentarinnsending dersom Javascript er aktivert, slik at non-AJAX-kommentarer enten kommer fra brukere uten Javascript eller fra spammere.."
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Du må ha et permalenkeformat med en identifikator : %%month%%, %%year%%, %%day%%, %%title%%"
2 l.store "Your posts : %d", "Dine artikler : %d"
2 l.store "add new", "legg til ny"
2 l.store "and published on", "og publisert den"
2 l.store "by", "av"
2 l.store "direct link to this article", "direktelenke til denne artikkelen"
2 l.store "everything about", "alt om"
2 l.store "it has been illegally reproduced and without proper authorization", "så har den blitt reprodusert uten tillatelse"
2 l.store "no posts", "ingen poster"
2 l.store "on", "på"
2 l.store "published", "utgitt"
2 l.store "seperate with spaces", "Adskill med mellomrom"
467 relevant lines.
467 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("nl_NL") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", "Login geslaagd"
2 l.store "Login unsuccessful", "Login mislukt"
2 l.store "An email has been successfully sent to your address with your new password", "Er is je met succes een e-mail gestuurd met uw nieuwe wachtwoord"
2 l.store "Oops, something wrong just happened", "Oeps, er is net iets misgegaan"
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", "Het lijkt er op dat er iets fout ging. Misschien ontbreken sommige zijbalken en moet je ze opnieuw installeren of handmatig verwijderen"
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", "Tag was succesvol bijgewerkt."
2 l.store "and published on", "en gepubliceerd op"
2 l.store "direct link to this article", "directe link naar dit arikel"
2 l.store "If you are reading this article elsewhere than", "Als je dit artikel ergens anders leest dan"
2 l.store "it has been illegally reproduced and without proper authorization", "is het illegaal en zonder de juiste toestemming gekopieerd"
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Je hebt een permalink formaat nodig met een identifier: %%month%%, %%year%%, %%day%%, %%title%%"
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Mag niet eindigen met .rss of .atom. Die zijn gereserveerd voor feed URLs"
# app/models/feedback/states.rb
2 l.store "Unclassified", "Niet geclassificeerd"
2 l.store "Just Presumed Ham", "Zojuist aangenomen dat dit Ham is"
2 l.store "Ham?", "Ham?"
2 l.store "Just Marked As Ham", "Zojuist gemarkeerd als Ham"
2 l.store "Ham", "Ham"
2 l.store "Spam?", "Spam?"
2 l.store "Just Marked As Spam", "Zojuist gemarkeerd als Spam"
2 l.store "Spam", "Spam"
# app/views/accounts/login.html.erb
2 l.store "I've lost my password", "Ik ben mijn wachtwoord kwijt"
2 l.store "Login", "Log in"
2 l.store "Password", "Wachtwoord"
2 l.store "Remember me", "Onthoud me"
2 l.store "Submit", "Verstuur"
2 l.store "Back to ", "Terug naar"
# app/views/accounts/recover_password.html.erb
2 l.store "Username or email", "Gebruikersnaam of e-mail"
# app/views/accounts/signup.html.erb
2 l.store "Create an account", "Maak een account aan"
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", "Uittreksels zijn een samenvatting van een post die alleen op de homepage staat, maar niet in de post zelf staan"
2 l.store "Uploads", "Uploads"
2 l.store "Post settings", "Post instellingen"
2 l.store "Publish at", "Publiceren op"
2 l.store "Permalink", "Permalink"
2 l.store "Article filter", "Artikel filter"
2 l.store "Save as draft", "Opslaan als concept"
# app/views/admin/content/destroy.html.erb
2 l.store "Are you sure you want to delete this article", "Weet je zeker dat je dit artikel wilt verwijderen?"
2 l.store "Delete this article", "Verwijder dit artikel"
2 l.store "Articles", "Artikelen"
# app/views/admin/content/index.html.erb
2 l.store "New Article", "Nieuw artikel"
2 l.store "Search articles that contain ...", "Zoek artikelen met ..."
2 l.store "Search", "Zoek"
2 l.store "Author", "Auteur"
2 l.store "Date", "Datum"
2 l.store "Feedback", "Feedback"
2 l.store "Filter", "Filter"
2 l.store "Manage articles", "Beheer artikelen"
# app/views/admin/dashboard/_comments.html.erb
2 l.store "Latest Comments", "Laatste reacties"
2 l.store "No comments yet", "Nog geen reacties"
2 l.store "By %s on %s", "door %s op %s"
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", "Binnenkomende links"
2 l.store "No one made a link to you yet", "Niemand maakte nog een link naar je"
2 l.store " made a link to you saying ", " maakte een link naar je met als tekst "
2 l.store "You have no internet connection", "Je hebt geen internetverbinding"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "Deze pagina geeft je een snel overzicht van wat er gebeurt op je Type blog en wat je doen kunt. Misschien wil je %s, %s of %s"
2 l.store "update your profile or change your password", "je profiel bijwerken of je wachtwoord wijzigen"
2 l.store "You can also do a bit of design, %s or %s.", "Je kunt ook wat design doen, %s of %s"
2 l.store "change your blog presentation", "je blog presentatie aanpassen"
2 l.store "enable plugins", "plugins instellen"
2 l.store "write a post", "een post schrijven"
2 l.store "write a page", "een pagina schrijven"
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "Meest populair"
2 l.store "Nothing to show yet", "Nog niets te zien"
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", "Laatste berichten"
2 l.store "No posts yet, why don't you start and write one", "Nog geen berichten, waarom begin je er niet een te schrijven"
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", "Laatste neiuws van het Typo ontwikkel blog"
2 l.store "Oh no, nothing new", "Oh nee, geen nieuws"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Je kunt voor de hele site feedback controle aanzetten. Als je dat doet zal geen enkel commentaar of trackback op je blog verschijnen totdat je het goedkeurt"
2 l.store "Comments filter", "Commentaren filter"
2 l.store "Enable gravatars", "Enable gravatars"
2 l.store "Show your email address", "Toon je e-mail adres"
2 l.store "Notifications", "Notificaties"
2 l.store "Typo can notify you when new articles or comments are posted", "Typo can je notificeren wanneer nieuwe artikelen of commentaren gepost worden"
2 l.store "Source Email", "Bron e-mail"
2 l.store "Email address used by Typo to send notifications", "E-mail adres dat Typo gebruikt om notificaties te versturen"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Het aanzetten van spambescherming zorgt dat typo het IP-adres en de inhoud van reacties vergelijkt met lokale en centrale zwarte lijsten. Een goede bescherming tegen spam robots"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo kan (optioneel) de %s spam-filter dienst gebruiken. Je moet een registratie bij Akismet hebben en een API sleutel voordat je deze dienst kunt gebruiken. Als je een Akismet sleutel hebt, vul die dan hier in"
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Deze instelling zorgt er voor dat bij geen enkel artikel in je blog trackbacks gebruikt kunnen worden. Het zal bestaande trackbacks niet verwijderen, maar het zal voorkomen dat nieuwe trackbacks worden toegevoegd."
2 l.store "Disable comments after", "Sta commentaren niet toe na"
2 l.store "days", "dagen"
2 l.store "Set to 0 to never disable comments", "Zet op 0 om commentaren altijd toe te staan"
2 l.store "Max Links", "Max links"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo zal automatisch commentaren en trackbacks verwijderen die meer dan een bepaald aantal links bevatten"
2 l.store "Set to 0 to never reject comments", "Zet op 0 om commentaren nooit te weigeren"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Je blog"
2 l.store "Blog name", "Blog naam"
2 l.store "Blog subtitle", "Blog ondertitel"
2 l.store "Blog URL", "Blog URL"
2 l.store "Language", "Taal"
2 l.store "Allow users to register", "Sta gebruikers toe zich te registreren"
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "Je kunt gebruikers toestaan zich te registreren bij je blog. Standaard zullen ze contributors worden, een soort account zonder rechten behalve het hebben van een profiel op de site. Als je niet wilt dat gebruikers zich registreren kun je ze altijd zelf toevoegen in het gebruikers deel."
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", "Je kunt je Google Feedburner account gebruiken in plaats van de Typo feed URL. Vul daartoe in dit formulier je Feedburner ID in."
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", "Het uitzetten van dit vinkje zal de meta-tags <code>noindex, follow</code> toevoegen aan elke categorie pagina, zodat die niet door zoekmachines geïndexeerd wordt; dit voorkomt dubbele hits"
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "Het uitzetten van dit vinkje zal de meta-tags <code>noindex, follow</code> toevoegen aan elke tag pagina, zodat die niet door zoekmachines geïndexeerd wordt; dit voorkomt dubbele hits"
2 l.store "Robots.txt", "Robots.txt"
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", "Je robots.txt bestand is niet schrijfbaar. Typo kan het niet wijzigen"
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Wanneer je een artikel publiceert kan Typo een trackback sturen naar de sites waaraan je linkt. Dit zou voor privé-blogs uit moeten staan, omdat het niet-publieke informatie 'lekt' naar sites die je bediscussieert. Voor publieke blogs is er geen goede reden om het uit te zetten."
2 l.store "Drag some plugins here to fill your sidebar", "Sleep wat plugins naar hier om de zijbalk te vullen"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Sleep dingen heen en weer om de zijbalk van dit blog aan te passen. Om dingen te verwijderen klik je op verwijderen Wijzigen worden automatisch opgeslagen, maar niet geactiveerd totdat je de 'Publiceer' knop klikt"
2 l.store "Available Items", "Beschikbare dingen"
2 l.store "You have no plugins installed", "Je hebt geen plugins geïinstalleerd"
2 l.store "Are you sure you want to delete the tag", "Weet je zeker dat je deze tag wilt verwijderen?"
2 l.store "Delete this tag", "Verwijder deze tag"
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", "Wijzigen"
2 l.store "Back to tags list", "Terug naar de lijst van tags"
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", "Beheer tags"
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", "Sorry, de thema catalogus is niet beschikbaar"
2 l.store "Theme catalogue", "Thema catalogus"
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", "Thema editor"
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Actieve thema's"
2 l.store "Get more themes", "Haal meer thema's op"
2 l.store "You can download third party themes from officially supported %s ", "Je kunt thema's van derden downloaden van officieel ondersteunde %s "
2 l.store "Typogarden", "Typogarden"
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", "Om een thema te installeren moet je het uploaden in de themes map. Zodra het is geupload zou je het op deze pagina moeten zien."
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Dit commentaar is gemarkeerd voor goedkeuring. Het zal niet getoond worden totdat de auteur het goedkeurt."
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Jouw naam"
2 l.store "Your email", "Jouw e-mail"
2 l.store "Your message", "Jouw bericht"
2 l.store "Comment Markup Help", ""
2 l.store "Preview comment", "Bekijk reactie"
2 l.store "leave url/email", "plaats url/e-mail"
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", "Er is iets mis gegaan en je reactie is niet bewaard"
# app/views/articles/_trackback.html.erb
2 l.store "From", "Van"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Geen artikelen gevonden"
2 l.store "posted in", "geplaatst in"
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "gaat zeggen"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Er zijn"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Geef een reactie"
2 l.store "Trackbacks", "Trackbacks"
2 l.store "Use the following link to trackback from your own site", "Gebruik de volgende link voor een trackback van jouw site"
2 l.store "RSS feed for this post", "RSS feed voor dit bericht"
2 l.store "trackback uri", "trackback uri"
2 l.store "Comments are disabled", "Reacties zijn niet mogelijk"
# app/views/authors/show.html.erb
2 l.store "Web site:", "Website:"
2 l.store "MSN:", "MSN:"
2 l.store "Yahoo:", "Yahoo:"
2 l.store "Jabber:", "Jabber:"
2 l.store "AIM:", "AIM:"
2 l.store "Twitter:", "Twitter:"
2 l.store "About %s", "Over %s"
2 l.store "This author has not published any article yet", "Deze auteur heeft nog geen artikelen gepubliceerd"
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", "Deze reactie is aangemerkt voor goedkeuring."
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", "wordt trots aangedreven door"
2 l.store "Dashboard", "Dashboard"
# app/views/setup/index.html.erb
2 l.store "Welcome", "Welkom"
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", "Welkom bij je %s blog setup. Vul een titel voor je blog in, en een e-mailadres, en Typo zorgt voor de rest"
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", "Gefeliciteerd!"
2 l.store "You have successfully signed up", "Je bent succesvol aangemeld"
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "Verlies de e-mail verzonden naar %s, want anders kun je niet meer inloggen"
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Anuluj"
2 l.store "Store", ""
2 l.store "Delete", "Usuń"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "lub"
2 l.store "Save", "Zapisz"
2 l.store "Edit", "Zmień"
2 l.store "Show", ""
2 l.store "Published", "Opublikowane"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "Wróć do podglądu"
2 l.store "Name", "Nazwa"
2 l.store "Description", "Opis"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", "brak artykułów"
2 l.store "1 article", "1 artykuł"
2 l.store "%d articles", "%d artykuły"
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", "%d komentarze"
2 l.store "no comments", "brak komentarzy"
2 l.store "1 comment", "1 komentarz"
2 l.store "no trackbacks", "brak trackbacków"
2 l.store "1 trackback", "1 trackback"
2 l.store "%d trackbacks", "%d trackbacki"
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "Tagi"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "%d articles and %d comments were posted since your last connexion", "%d artykułów i %d komentarzy zostało opublikowanych od twojego ostaniego połączenia"
2 l.store "You're running Typo %s", "Działasz na Typo %s"
2 l.store "Total posts : %d", "Liczba wszystkich wpisów: %d"
2 l.store "Your posts : %d", "Twoje wpisy: %d"
2 l.store "Total comments : %d", "Liczba wszystkich komentarzy: %d"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Możesz włączyć globalną moderację komentarzy. W takim przypadku żaden komentarz nie ukaże się na blogu aż do momentu jego akceptacji."
2 l.store "Comments filter", "Filtr komentarzy"
2 l.store "Enable gravatars", "Włącz gravatary"
2 l.store "Show your email address", "Pokaż swój adres email"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo może wysyłać powiadomienia o nowych artykułach bądź komentarzach"
2 l.store "Source Email", "Źródłowy adres email"
2 l.store "Email address used by Typo to send notifications", "Adres email używany przez Typo do wysyłania powiadomień"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "Włączenie ochrony przed spamem sprawi, iż Typo będzie porównywać adresy IP nadawców oraz treść ich postów z lokalnymi i zdalnymi czarnymi listami. To dobra obrona przed spam botami."
2 l.store "Enable spam protection", "Włącz ochronę przed spamem"
2 l.store "Akismet Key", "Klucz Akismet"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo może (opcjonalnie) stosować usługę %s do filtrowania spamu. Musisz zarejestrować się w serwisie Akismet by otrzymać klucz API nim będzie można używać tej usługi. Jeśli posiadasz klucz API Akismet, wprowadź go tutaj"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Ta opcja pozwala na wyłączenie trackbacków we wszystkich artykułach. Nie usunie jednak istniejących trackbacków, a jedynie zabroni dodawania nowych."
2 l.store "Disable comments after", "Wyłącz komentarze po "
2 l.store "days", "dni"
2 l.store "Set to 0 to never disable comments", "Ustaw 0 by komentarze były zawsze włączone"
2 l.store "Max Links", "Max. liczba łączy"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo automatycznie odrzuca komentarze i trackbacki, które zawierają większą, niż podana, liczbę łączy"
2 l.store "Set to 0 to never reject comments", "Ustaw 0 by komentarze były zawsze akceptowane"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Twój blog"
2 l.store "Blog name", "Nazwa bloga"
2 l.store "Blog subtitle", "Podtytuł bloga"
2 l.store "Blog URL", "Adres URL bloga"
2 l.store "Language", "Język"
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Wyświetl"
2 l.store "articles on my homepage by default", "domyślnie artykułów na stronie głównej"
2 l.store "articles in my news feed by default", "domyślnie artykułów w subskrypcji RSS"
2 l.store "Show full article on feed", "Pokaż pełną treść artykułu w subskrypcji RSS"
2 l.store "Feedburner ID", ""
2 l.store "General settings", "Ustawienia ogólne"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", "Optymalizacja silnika wyszukiwania"
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Publikując artykuły, Typo może powiadomić strony, do których podasz łącza. Opcja ta powinna być wyłączona w przypadku blogów osobistych, gdyż może doprowadzić do wycieku prywatnych informacji. W przypadku blogów publicznych wyłączenie tej opcji nie ma większego sensu."
2 l.store "URLs to ping automatically", "Automatycznie pingowane łącza"
2 l.store "Latitude, Longitude", "Szerokość geogr., długość geogr."
2 l.store "your lattitude and longitude", "Twoją szerokość i długość geograficzna"
2 l.store "exemple", "na przykład"
2 l.store "Write", "Pisanie"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "Brak zainstalowanych wtyczek"
2 l.store "Drag some plugins here to fill your sidebar", "Przeciągnij i upuść wtyczki na pasek boczny"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Przeciągnij i upuść pozycje, które mają być wyświetlone na blogu. By usunąć pozycję naciśnij *Usuń*. Zmiany są zapisywane od razu, lecz nie są aktywne do momentu kliknięcia 'Publikuj zmiany'"
2 l.store "Available Items", "Dostępne elementy"
2 l.store "Active Sidebar items", "Aktywne elementy paska"
2 l.store "Get more plugins", ""
2 l.store "Sidebar", ""
2 l.store "Publish changes", "Publikuj zmiany"
# app/views/admin/tags/_form.html.erb
2 l.store "Display name", "Wyświetlana nazwa"
# app/views/admin/tags/destroy.html.erb
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Temat aktywny"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Choose a theme", ""
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", ""
2 l.store "Password confirmation", ""
2 l.store "Profile", ""
2 l.store "User's status", ""
2 l.store "Active", ""
2 l.store "Inactive", ""
2 l.store "Profile Settings", ""
2 l.store "Firstname", ""
2 l.store "Lastname", ""
2 l.store "Nickname", ""
2 l.store "Editor", ""
2 l.store "Use simple editor", ""
2 l.store "Use visual rich editor", ""
2 l.store "Send notification messages via email", "Wysyłaj powiadomienia emailem"
2 l.store "Send notification messages when new articles are posted", "Wysyłaj powiadomienia o nowych artykułach"
2 l.store "Send notification messages when comments are posted", "Wysyłaj powiadomienia o nowych komentarzach"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Ten komentarz oczekuje na akceptację. Nie ukaże się do czasu zaakceptowania przez autora."
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Twoja nazwa"
2 l.store "Your email", "Twój email"
2 l.store "Your message", "Treść"
2 l.store "Comment Markup Help", "Pomoc języka formatowania"
2 l.store "Preview comment", "Obejrzyj komentarz"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "Z"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Brak artykułów"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "zaraz powie"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Istnieje"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Skomentuj"
2 l.store "Trackbacks", ""
2 l.store "Use the following link to trackback from your own site", "Użyj następującego trackbacka na swojej stronie"
2 l.store "RSS feed for this post", "Subskrypcja RSS dla tego wpisu"
2 l.store "trackback uri", "Adres trackback"
2 l.store "Comments are disabled", "Komentarze wyłączone"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", "dumnie działa na"
2 l.store "Dashboard", "Podsumowanie"
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Poniższe ustawienia podawane są jako domyślne jeśli publikacja będzie zawierać metadane iTunes"
2 l.store "Things you can do", "Dostępne działania"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!", "Ta opcja pozwala wybrać prosty lub pełny panel administracyjny. Pełny panel administracyjny zawiera więcej opcji przez co jest bardziej skomplikowany. Tylko dla zaawansowanych użytkowników!"
2 l.store "View article on your blog", "Obejrzyj artykuł na blogu"
2 l.store "View comment on your blog", "Obejrzyj komentarz na blogu"
2 l.store "View page on your blog", "Zaprezentuj stronę na blogu"
2 l.store "What can you do ?", "Co możesz zrobić?"
2 l.store "Which settings group would you like to edit", "Którą grupę ustawień chcesz zmodyfikować"
2 l.store "Write Page", "Utworzyć stronę"
2 l.store "Write Post", "Utworzyć wpis"
2 l.store "Write a Page", "Utwórz stronę"
2 l.store "Write an Article", "Utwórz artykuł"
2 l.store "XML Syndication", "Subskrypcja XML"
2 l.store "You are now logged out of the system", "Wylogowano z systemu"
2 l.store "You can add it to the following categories", "Możesz dodać go do następujących kategorii"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Można opcjonalnie wyłączyć nie-Ajaxowe komentarze. Typo zawsze używa technologii Ajax do przesyłania komentarzy - o ile Javascript jest włączony. Przeważnie komentarze nie-Ajaxowe pochodzą od spamerów lub użytkowników bez Javascript."
2 l.store "add new", "dodaj nową"
2 l.store "by", "przez"
2 l.store "log out", "wyloguj"
2 l.store "no ", "brak "
2 l.store "no categories", "brak kategori"
2 l.store "no tags", "brak tagów"
2 l.store "no users", "brak użytkowników"
2 l.store "on", "na"
2 l.store "seperate with spaces", "rozdziel spacjami"
621 relevant lines.
621 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("ro_RO") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", ""
2 l.store "complete", ""
2 l.store "File uploaded: ", ""
2 l.store "Unable to upload", ""
2 l.store "Metadata was successfully updated.", ""
2 l.store "Not all metadata was defined correctly.", ""
2 l.store "Content Type was successfully updated.", ""
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", ""
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "Anulare"
2 l.store "Store", ""
2 l.store "Delete", "Ștergere"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "sau"
2 l.store "Save", "Salvează"
2 l.store "Edit", "Editare"
2 l.store "Show", ""
2 l.store "Published", "Publicat"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", ""
2 l.store "Name", "Nume"
2 l.store "Description", "Descriere"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "fără comentarii"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "fără retrolegături"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", ""
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
2 l.store "Show your email address", "Arată adresa ta de email"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "Typo te poate alerta la publicarea de noi articole sau comentarii"
2 l.store "Source Email", "Expeditor email"
2 l.store "Email address used by Typo to send notifications", "Adresa email folosită de Typo pentru a trimite alerte prin email"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "La activarea protecției anti-spam, Typo va compara adresa IP a utilizatorului care publică un articol, cît și conținutul articolului publicat, cu niște liste negre locale sau din altă parte. Reprezintă o bună apărare împotriva unui spam bot "
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Opțional, Typo poate folosi serviciul %s de filtrare spam. Trebuie să te înregistrezi la Akismet și să primești o cheie API pentru a putea folosi acest serviciu. Dacă ai deja o cheie Akismet, introdu-o aici"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Această opțiune va dezactiva trimiterea de retrolegături de acum înainte. Retrolegăturile existente vor rămîne în site-uri, dar alte retrolegături nu vor mai fi posibile nicăieri in blog."
2 l.store "Disable comments after", "Dezactivează comentariile după "
2 l.store "days", "zile"
2 l.store "Set to 0 to never disable comments", "Comentariile nu vor fi dezactivate niciodată dacă alegi valoarea 0"
2 l.store "Max Links", "Număr maxim de legături"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo va respinge automat comentarii și retrolegături care conțin mai mult decît un anumit număr de legături"
2 l.store "Set to 0 to never reject comments", "Comentariile nu vor fi respinse niciodată dacă alegi valoarea 0"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "Site"
2 l.store "Blog name", "Numele blogului"
2 l.store "Blog subtitle", "Subtitlul blogului"
2 l.store "Blog URL", "Adresa blogului"
2 l.store "Language", "Language" #Need translate
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "Afișează"
2 l.store "articles on my homepage by default", "articole implicit în pagina principală"
2 l.store "articles in my news feed by default", "articole implicit în RSS"
2 l.store "Show full article on feed", "Include articole complete în RSS"
2 l.store "Feedburner ID", ""
2 l.store "General settings", "Setări generale"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", ""
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Cînd publici un articol, Typo poate trimite automat retrolegături site-urilor pe care le specifici. În cazul unui blog personal, această opțiune ar trebui dezactivată, ca să nu deconspire informații private. Dacă blogul e public, opțiunea aceasta poate rămîne activă."
2 l.store "URLs to ping automatically", "Site-uri de anunțat automat"
2 l.store "your lattitude and longitude", "latitudinea și longitudinea ta"
2 l.store "exemple", "de pildă"
2 l.store "Write", "Publicare"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "Niciun plugin instalat"
# app/views/admin/sidebar/_publish.html.erb
2 l.store "Changes published", "Schimbările au fost publicate"
# app/views/admin/sidebar/_target.html.erb
2 l.store "Drag some plugins here to fill your sidebar", "Trage plugin-uri aici pentru a popula bara laterală"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Trage și lasă obiecte pe bara laterală pentru a o modifica în blog. Pentru a șterge obiecte din bara laterală, apasă pe 'șterge'. Modificările se salvează imediat, dar nu vor fi activate pînă cînd apeși butonul 'publică'"
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "Tema activă"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Send notification messages via email", "Alerte prin email"
2 l.store "Send notification messages when new articles are posted", "Alerte la publicarea de articole noi"
2 l.store "Send notification messages when comments are posted", "Alerte la publicarea de comentarii noi"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "Your AIM id", ""
2 l.store "display AIM ID on public profile", ""
2 l.store "Your Twitter username", ""
2 l.store "display twitter on public profile", ""
2 l.store "Tell us more about you", ""
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "Ești sigur că dorești să ștergi acest utilizator"
2 l.store "Yes", ""
2 l.store "Users", ""
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "Editează un utilizator"
# app/views/admin/users/index.html.erb
2 l.store "New User", "Utilizator nou"
2 l.store "Comments", ""
2 l.store "State", ""
2 l.store "%s user", ""
# app/views/admin/users/new.html.erb
2 l.store "Add User", ""
# app/views/articles/_article.html.erb
2 l.store "Posted by", "Publicat de"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "a scris"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Acest comentariu a fost marcat pentru moderare. El nu va apărea în blog înainte de a fi aprobat."
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "Nume"
2 l.store "Your email", "Email"
2 l.store "Your message", "Comentariu"
2 l.store "Comment Markup Help", "Ajutor la marcare"
2 l.store "Preview comment", "Previzualizare"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "De la"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "Niciun articol nu a fost găsit"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "vrea să scrie"
# app/views/articles/groupings.html.erb
2 l.store "There are", "Sînt"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "Comentează"
2 l.store "Trackbacks", ""
2 l.store "Use the following link to trackback from your own site", "Folosește link-ul următor pentru a realiza o retrolegătură de la site-ul tău"
2 l.store "RSS feed for this post", "Flux RSS pentru acest articol"
2 l.store "trackback uri", "URL pentru retrolegătură"
2 l.store "Comments are disabled", "Comentariile sînt dezactivate"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", ""
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "Text Filter Details", "Detaliile filtrului de text"
2 l.store "Text Filters", "Filtre de text"
2 l.store "Textfilter", "Filtru de text"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Setările de mai jos vor reprezenta valorile implicite atunci cînd vei publica un enclosure cu metainformații pentru iTunes"
2 l.store "Things you can do", "Acțiuni"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!","This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only!" #Need translate
2 l.store "Type", "Tip"
2 l.store "Typo admin", "Administrare Typo"
2 l.store "Upload a new File", "Încarcă un fișier nou"
2 l.store "Upload a new Resource", "Încarcă o nouă resursă"
2 l.store "Uploaded", "Încărcat la"
2 l.store "User's articles", "Articole publicate de acest utilizator"
2 l.store "View article on your blog", "Arată acest articol in blog"
2 l.store "View comment on your blog", "Arată acest comentariu în blog"
2 l.store "View page on your blog", "Arată această pagină în blog"
2 l.store "Which settings group would you like to edit", "Ce grup de setări dorești să modifici"
2 l.store "Write a Page", "Compune o pagină"
2 l.store "Write an Article", "Scrie un articol"
2 l.store "You are now logged out of the system", "Ați ieșit din aplicație"
2 l.store "You can add it to the following categories", "Îl puteți adăuga următoarelor categorii"
2 l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", ""
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Opțional, puteți dezactiva comentariile non-AJAX. Typo va folosi întotdeauna AJAX pentru trimiterea comentariilor dacă funcționează Javascript la utilizator, astfel că orice comentariu care nu vine prin AJAX trebuie să vină fie de la spammeri, fie de la vizitatori fără Javascript."
2 l.store "by", "de"
2 l.store "on", "la"
2 l.store "seperate with spaces", "separate de spațiu"
655 relevant lines.
655 lines covered and
0 lines missed.
# coding: utf-8
2Localization.define("zh_TW") do |l|
# app/controllers/accounts_controller.rb
2 l.store "Login successful", ""
2 l.store "Login unsuccessful", ""
2 l.store "An email has been successfully sent to your address with your new password", ""
2 l.store "Oops, something wrong just happened", ""
2 l.store "Successfully logged out", ""
2 l.store "login", ""
2 l.store "signup", ""
2 l.store "Recover your password", ""
# app/controllers/admin/categories_controller.rb
2 l.store "Category was successfully saved.", ""
2 l.store "Category could not be saved.", ""
# app/controllers/admin/content_controller.rb
2 l.store "Error, you are not allowed to perform this action", ""
2 l.store "Preview", ""
2 l.store "Article was successfully created", ""
2 l.store "Article was successfully updated.", ""
# app/controllers/admin/feedback_controller.rb
2 l.store "Deleted", ""
2 l.store "Not found", ""
2 l.store "Deleted %d item(s)", ""
2 l.store "Marked %d item(s) as Ham", ""
2 l.store "Marked %d item(s) as Spam", ""
2 l.store "Confirmed classification of %s item(s)", ""
2 l.store "Not implemented", ""
2 l.store "All spam have been deleted", ""
2 l.store "Comment was successfully created.", ""
2 l.store "Comment was successfully updated.", ""
# app/controllers/admin/pages_controller.rb
2 l.store "Page was successfully created.", ""
2 l.store "Page was successfully updated.", ""
# app/controllers/admin/profiles_controller.rb
2 l.store "User was successfully updated.", ""
# app/controllers/admin/resources_controller.rb
2 l.store "Error occurred while updating Content Type.", "當更新內容類型時發生錯誤"
2 l.store "complete", "完成"
2 l.store "File uploaded: ", "檔案上傳: "
2 l.store "Unable to upload", "不能被上傳"
2 l.store "Metadata was successfully updated.", "Metadata已成功更新"
2 l.store "Not all metadata was defined correctly.", "並非所有Metadata已被正確定義"
2 l.store "Content Type was successfully updated.", "內容類型已被成功更新"
# app/controllers/admin/settings_controller.rb
2 l.store "Please review and save the settings before continuing", ""
2 l.store "config updated.", "更新設定"
# app/controllers/admin/sidebar_controller.rb
2 l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", ""
# app/controllers/admin/tags_controller.rb
2 l.store "Tag was successfully updated.", ""
# app/controllers/admin/themes_controller.rb
2 l.store "Theme changed successfully", ""
2 l.store "You are not authorized to open this file", ""
2 l.store "File saved successfully", ""
2 l.store "Unable to write file", ""
# app/controllers/admin/users_controller.rb
2 l.store "User was successfully created.", ""
# app/controllers/application_controller.rb
2 l.store "Localization.rtl", ""
# app/controllers/articles_controller.rb
2 l.store "No posts found...", ""
2 l.store "Archives for", ""
2 l.store "Archives for ", ""
2 l.store ", Articles for ", ""
# app/controllers/grouping_controller.rb
2 l.store "page", ""
2 l.store "everything about", ""
# app/helpers/admin/base_helper.rb
2 l.store "Cancel", "取消"
2 l.store "Store", ""
2 l.store "Delete", "刪除"
2 l.store "delete", ""
2 l.store "Delete content", ""
2 l.store "Are you sure?", ""
2 l.store "Please select", ""
2 l.store "There are no %s yet. Why don't you start and create one?", ""
2 l.store "or", "或"
2 l.store "Save", "存檔"
2 l.store "Edit", "修改"
2 l.store "Show", ""
2 l.store "Published", "已公開的"
2 l.store "Unpublished", ""
2 l.store "Show help on Typo macros", ""
2 l.store "Back to overview", "回到概覽"
2 l.store "Name", "名字"
2 l.store "Description", "説明"
2 l.store "Tag", ""
# app/helpers/admin/categories_helper.rb
2 l.store "no articles", ""
2 l.store "1 article", ""
2 l.store "%d articles", ""
# app/helpers/admin/content_helper.rb
2 l.store "Destroy this draft", ""
# app/helpers/admin/feedback_helper.rb
2 l.store "Show conversation", ""
2 l.store "Flag as %s", ""
# app/helpers/application_helper.rb
2 l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", ""
2 l.store "%%d. %%b", ""
2 l.store "%d comments", ""
2 l.store "no comments", "沒有評論"
2 l.store "1 comment", ""
2 l.store "no trackbacks", "沒有引用"
2 l.store "1 trackback", ""
2 l.store "%d trackbacks", ""
# app/helpers/content_helper.rb
2 l.store "Posted in", ""
2 l.store "Tags", "標示標籤"
2 l.store "no posts", ""
2 l.store "1 post", ""
2 l.store "%d posts", ""
# app/models/article.rb
2 l.store "Original article writen by", ""
2 l.store "and published on", ""
2 l.store "direct link to this article", ""
2 l.store "If you are reading this article elsewhere than", ""
2 l.store "it has been illegally reproduced and without proper authorization", ""
# app/models/blog.rb
2 l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", ""
2 l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", ""
# app/models/feedback/states.rb
2 l.store "Unclassified", ""
2 l.store "Just Presumed Ham", ""
2 l.store "Ham?", ""
2 l.store "Just Marked As Ham", ""
2 l.store "Ham", ""
2 l.store "Spam?", ""
2 l.store "Just Marked As Spam", ""
2 l.store "Spam", ""
# app/views/accounts/login.html.erb
2 l.store "I've lost my password", ""
2 l.store "Login", "登入"
2 l.store "Password", "密碼"
2 l.store "Remember me", ""
2 l.store "Submit", ""
2 l.store "Back to ", ""
# app/views/accounts/recover_password.html.erb
2 l.store "Username or email", ""
# app/views/accounts/signup.html.erb
2 l.store "Create an account", ""
2 l.store "Username", "名稱"
2 l.store "Email", "Email"
2 l.store "Signup", "註冊"
# app/views/admin/categories/_categories.html.erb
2 l.store "Title", "標題"
2 l.store "Reorder", "重新排序"
2 l.store "Sort alphabetically", "依字母順序排序"
# app/views/admin/categories/_form.html.erb
2 l.store "Keywords", ""
# app/views/admin/categories/destroy.html.erb
2 l.store "Are you sure you want to delete the category ", "確認刪除此分類? "
2 l.store "Delete this category", "刪除分類"
2 l.store "Categories", "分類"
# app/views/admin/categories/index.html.erb
2 l.store "New Category", ""
# app/views/admin/categories/new.html.erb
2 l.store "%s Category", ""
# app/views/admin/categories/reorder.html.erb
2 l.store "(Done)", "(完成)"
# app/views/admin/content/_attachment.html.erb
2 l.store "Remove", "移除"
2 l.store "Currently this article has the following resources", ""
2 l.store "You can associate the following resources", "你可以連結下列資源"
2 l.store "Really delete attachment", "確定刪除附件?"
2 l.store "Add Another Attachment", "新增其他附件"
# app/views/admin/content/_drafts.html.erb
2 l.store "Drafts", ""
# app/views/admin/content/_form.html.erb
2 l.store "Publish settings", ""
2 l.store "Allow comments", "允許評論"
2 l.store "Allow trackbacks", "允許引用"
2 l.store "Password:", ""
2 l.store "Publish", "公開"
2 l.store "Excerpt", ""
2 l.store "Excerpts are posts summaries that are shown on your blog homepage only but won’t appear on the post itself", ""
2 l.store "Uploads", "上載"
2 l.store "Post settings", ""
2 l.store "Publish at", "公開"
2 l.store "Permalink", "固定連接"
2 l.store "Article filter", "篩選文章"
2 l.store "Save as draft", ""
# app/views/admin/content/destroy.html.erb
2 l.store "Are you sure you want to delete this article", "確定刪除本篇文章?"
2 l.store "Delete this article", "刪除本篇文章"
2 l.store "Articles", "文章"
# app/views/admin/content/index.html.erb
2 l.store "New Article", ""
2 l.store "Search articles that contain ...", ""
2 l.store "Search", ""
2 l.store "Author", "作者"
2 l.store "Date", ""
2 l.store "Feedback", "回應"
2 l.store "Filter", ""
2 l.store "Manage articles", ""
# app/views/admin/dashboard/_comments.html.erb
2 l.store "Latest Comments", "最近評論"
2 l.store "No comments yet", "沒有任何評論"
2 l.store "By %s on %s", ""
# app/views/admin/dashboard/_inbound.html.erb
2 l.store "Inbound links", "導入連結"
2 l.store "No one made a link to you yet", "目前沒有人連結到你"
2 l.store " made a link to you saying ", "連結到你,並且說"
2 l.store "You have no internet connection", "你沒有連結到網路"
# app/views/admin/dashboard/_overview.html.erb
2 l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", "這個地方給你一個快速的綜覽,讓你知道你的部落格發生甚麼事情了。也許你想要%s, %s或%s"
2 l.store "update your profile or change your password", "更新資料或者修改密碼"
2 l.store "You can also do a bit of design, %s or %s.", "你也可以作一些設計, %s或%s."
2 l.store "change your blog presentation", "修改你的部落格外觀"
2 l.store "enable plugins", "啟動plugins"
2 l.store "write a post", "寫一篇文章"
2 l.store "write a page", "寫一個頁面"
# app/views/admin/dashboard/_popular.html.erb
2 l.store "Most popular", "最受歡迎"
2 l.store "Nothing to show yet", "還沒有東西"
# app/views/admin/dashboard/_posts.html.erb
2 l.store "Latest Posts", ""
2 l.store "No posts yet, why don't you start and write one", "你還沒有發文"
# app/views/admin/dashboard/_typo_dev.html.erb
2 l.store "Latest news from the Typo development blog", "Typo開發部落格的最新消息"
2 l.store "Oh no, nothing new", "沒有新訊息"
# app/views/admin/dashboard/_welcome.html.erb
2 l.store "Welcome back, %s!", "歡迎回來, %s!"
2 l.store "%d articles and %d comments were posted since your last connexion", ""
2 l.store "This comment by <strong>%s</strong> was flagged as spam, %s?", ""
# app/views/admin/feedback/article.html.erb
2 l.store "Comments for %s", ""
2 l.store "Status", "身分"
2 l.store "Comment Author", ""
2 l.store "Comment", ""
# app/views/admin/feedback/edit.html.erb
2 l.store "Comments for", "做出評論"
# app/views/admin/feedback/index.html.erb
2 l.store "Search Comments and Trackbacks that contain", ""
2 l.store "Article", ""
# app/views/admin/pages/_form.html.erb
2 l.store "Online", "上線"
2 l.store "Page settings", ""
2 l.store "Permanent link", ""
# app/views/admin/pages/destroy.html.erb
2 l.store "Pages","頁數"
2 l.store "Are you sure you want to delete the page", "你確定要刪除此頁?"
2 l.store "Delete this page", "刪除此頁"
# app/views/admin/pages/index.html.erb
2 l.store "New Page", ""
2 l.store "Manage pages", ""
# app/views/admin/profiles/index.html.erb
2 l.store "Your profile", ""
# app/views/admin/resources/_mime_edit.html.erb
2 l.store "Content Type", "內容類型"
# app/views/admin/resources/_pages.html.erb
2 l.store "Previous page", "前一頁"
2 l.store "Next page", "下一頁"
# app/views/admin/resources/_upload.html.erb
2 l.store "Upload a File to your Site", "上傳一個檔案到你的網點"
2 l.store "File", "檔案"
2 l.store "Upload", "上傳"
# app/views/admin/resources/destroy.html.erb
2 l.store "Are you sure you want to delete this file", "你確定要刪除此檔案?"
2 l.store "Delete this file from the webserver?", "從網路伺服器刪除此檔案?"
2 l.store "File Uploads", "檔案上載"
# app/views/admin/resources/images.html.erb
2 l.store "Thumbnail", ""
2 l.store "File Size", "檔案大小"
2 l.store "Images", ""
2 l.store "right-click for link", "右鍵連結"
# app/views/admin/resources/index.html.erb
2 l.store "Filename", "檔案名稱"
# app/views/admin/settings/_submit.html.erb
2 l.store "Update settings", ""
# app/views/admin/settings/feedback.html.erb
2 l.store "Enable comments by default", "預設為可以回應"
2 l.store "Enable Trackbacks by default", "預設為可以引用"
2 l.store "Enable feedback moderation", "適度可以反饋"
2 l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "你可以設定網點範圍有限度的反饋。這麼做將不會有任何評論引用出現在你的部落格,除非你使之生效"
2 l.store "Comments filter", "篩選評論"
2 l.store "Enable gravatars", "可以顯示留言大頭貼"
2 l.store "Show your email address", "秀出你的email位址"
2 l.store "Notifications", ""
2 l.store "Typo can notify you when new articles or comments are posted", "當新的文章或評論被貼上時typo會通知你"
2 l.store "Source Email", "原始email"
2 l.store "Email address used by Typo to send notifications", "email位址使用typo發出通知"
2 l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "typo會根據張貼者IP的位址內容還有黑名單來有效防止垃圾郵件。好的防禦可以抑制垃圾郵寄"
2 l.store "Enable spam protection", "有效防止垃圾郵件"
2 l.store "Akismet Key", "Akismet鍵"
2 l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo隨意的使用 %s 篩選垃圾郵件服務。"
2 l.store "Disable trackbacks site-wide", ""
2 l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "此設定可以讓你部落格裡的文章停止引用,這個舉動並不會刪除存在的引用,但是會阻止將來你要試圖增加的引用"
2 l.store "Disable comments after", "在失效的評論之後"
2 l.store "days", "日期"
2 l.store "Set to 0 to never disable comments", "設定0為絕不失效的評論"
2 l.store "Max Links", "最大的連結值"
2 l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo會自動回絕評論和引用,包含某些可靠的連結總數"
2 l.store "Set to 0 to never reject comments", "設定0回絕不回絕的評論"
2 l.store "Feedback settings", ""
# app/views/admin/settings/index.html.erb
2 l.store "Your blog", "你的部落格"
2 l.store "Blog name", "部落格名稱"
2 l.store "Blog subtitle", "副標題"
2 l.store "Blog URL", "部落格URL"
2 l.store "Language", "言語"
2 l.store "Allow users to register", ""
2 l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
2 l.store "Items to display in admin lists", ""
2 l.store "Publishing options", ""
2 l.store "Display", "顯示"
2 l.store "articles on my homepage by default", "預設的首頁文章"
2 l.store "articles in my news feed by default", "預設的feed文章"
2 l.store "Show full article on feed", "顯示全部feed文章"
2 l.store "Feedburner ID", ""
2 l.store "General settings", "一般設定"
2 l.store "You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.", ""
# app/views/admin/settings/seo.html.erb
2 l.store "Search Engine Optimisation", "SEO"
2 l.store "Format of permalink", ""
2 l.store "Google Analytics", ""
2 l.store "Google verification link", ""
2 l.store "Meta description", ""
2 l.store "Meta keywords", ""
2 l.store "Use RSS description", ""
2 l.store "Index categories", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Index tags", ""
2 l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
2 l.store "Robots.txt", ""
2 l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
2 l.store "Search Engine Optimization", ""
2 l.store "This will display", ""
2 l.store "at the bottom of each of your post in the RSS feed", ""
2 l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "當公開的文章或引用會洩漏你私人的資訊時,對於不公開的部落格typo會終止連結。在公開的部落格並無此選項"
2 l.store "URLs to ping automatically", "URL自動地Ping"
2 l.store "Latitude, Longitude", "緯度,經度"
2 l.store "your lattitude and longitude", "你的緯度、經度"
2 l.store "exemple", "舉例"
2 l.store "Write", "寫入"
# app/views/admin/sidebar/_availables.html.erb
2 l.store "You have no plugins installed", "你沒有plugins可以安置"
# app/views/admin/sidebar/_publish.html.erb
2 l.store "Changes published", "公開變更"
# app/views/admin/sidebar/_target.html.erb
2 l.store "Drag some plugins here to fill your sidebar", "拖曳一些plugins填滿你的sidebar"
# app/views/admin/sidebar/index.html.erb
2 l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "在這個部落格顯示拖曳改變的sidebar選項。從sidebar選項移除會立即存檔,但是不會執行直到你輸入<公開>鍵"
2 l.store "Available Items", "可用的項目"
2 l.store "Active Sidebar items", "有效的側邊欄項目"
2 l.store "Get more plugins", ""
2 l.store "Sidebar", ""
2 l.store "Publish changes", "公開變更"
# app/views/admin/tags/_form.html.erb
2 l.store "Display name", "暱稱"
# app/views/admin/tags/destroy.html.erb
2 l.store "Are you sure you want to delete the tag", ""
2 l.store "Delete this tag", ""
# app/views/admin/tags/edit.html.erb
2 l.store "Editing ", ""
2 l.store "Back to tags list", ""
# app/views/admin/tags/index.html.erb
2 l.store "Display Name", ""
2 l.store "Manage tags", ""
# app/views/admin/themes/catalogue.html.erb
2 l.store "Sorry the theme catalogue is not available", ""
2 l.store "Theme catalogue", ""
# app/views/admin/themes/editor.html.erb
2 l.store "Theme editor", ""
# app/views/admin/themes/index.html.erb
2 l.store "Active theme", "執行中主題"
2 l.store "Get more themes", ""
2 l.store "You can download third party themes from officially supported %s ", ""
2 l.store "Typogarden", ""
2 l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
2 l.store "Choose a theme", "選擇主題"
# app/views/admin/users/_form.html.erb
2 l.store "Account settings", ""
2 l.store "Password confirmation", ""
2 l.store "Profile", ""
2 l.store "User's status", ""
2 l.store "Active", ""
2 l.store "Inactive", ""
2 l.store "Profile Settings", ""
2 l.store "Firstname", ""
2 l.store "Lastname", ""
2 l.store "Nickname", ""
2 l.store "Editor", ""
2 l.store "Use simple editor", ""
2 l.store "Use visual rich editor", ""
2 l.store "Send notification messages via email", "經由email發出通知訊息"
2 l.store "Send notification messages when new articles are posted", "新的文章貼上時發出通知訊息"
2 l.store "Send notification messages when comments are posted", "新的評錀貼上時發出通知訊息"
2 l.store "Contact Options", ""
2 l.store "Your site", ""
2 l.store "display url on public profile", ""
2 l.store "Your MSN", ""
2 l.store "display MSN ID on public profile", ""
2 l.store "Your Yahoo ID", ""
2 l.store "display Yahoo! ID on public profile", ""
2 l.store "Your Jabber ID", ""
2 l.store "display Jabber ID on public profile", ""
2 l.store "Your AIM id", ""
2 l.store "display AIM ID on public profile", ""
2 l.store "Your Twitter username", ""
2 l.store "display twitter on public profile", ""
2 l.store "Tell us more about you", ""
# app/views/admin/users/destroy.html.erb
2 l.store "Really delete user", "確定刪除使用者"
2 l.store "Yes", ""
2 l.store "Users", "使用者"
# app/views/admin/users/edit.html.erb
2 l.store "Edit User", "修改使用者"
# app/views/admin/users/index.html.erb
2 l.store "New User", "新的使用者"
2 l.store "Comments", "評論"
2 l.store "State", ""
2 l.store "%s user", ""
# app/views/admin/users/new.html.erb
2 l.store "Add User", ""
# app/views/articles/_article.html.erb
2 l.store "Posted by", "貼上"
2 l.store "Continue reading", ""
# app/views/articles/_comment.html.erb
2 l.store "said", "發言"
2 l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "這篇評論被標示為版主所允許的。他不會在部落格顯示直到版主承認他。"
# app/views/articles/_comment_box.html.erb
2 l.store "Your name", "你的名稱"
2 l.store "Your email", "你的email"
2 l.store "Your message", "你的訊息"
2 l.store "Comment Markup Help", "評論顯示協助"
2 l.store "Preview comment", "預覽評論"
2 l.store "leave url/email", ""
# app/views/articles/_comment_failed.html.erb
2 l.store "Oops, something wrong happened, the comment could not be saved", ""
# app/views/articles/_trackback.html.erb
2 l.store "From", "From"
# app/views/articles/archives.html.erb
2 l.store "No articles found", "沒有找到任何文章"
2 l.store "posted in", ""
# app/views/articles/comment_preview.html.erb
2 l.store "is about to say", "這是關於~~"
# app/views/articles/groupings.html.erb
2 l.store "There are", "有"
# app/views/articles/read.html.erb
2 l.store "Leave a response", "離開一個回應"
2 l.store "Trackbacks", "引用"
2 l.store "Use the following link to trackback from your own site", "從你所屬的網點用隨後的連結去引用"
2 l.store "RSS feed for this post", "為本篇提供RSS"
2 l.store "trackback uri", "引用URL"
2 l.store "Comments are disabled", "評論停用"
# app/views/authors/show.html.erb
2 l.store "Web site:", ""
2 l.store "MSN:", ""
2 l.store "Yahoo:", ""
2 l.store "Jabber:", ""
2 l.store "AIM:", ""
2 l.store "Twitter:", ""
2 l.store "About %s", ""
2 l.store "This author has not published any article yet", ""
# app/views/comments/show.html.erb
2 l.store "This comment has been flagged for moderator approval.", ""
# app/views/layouts/administration.html.erb
2 l.store "%s »", ""
2 l.store "is proudly powered by", ""
2 l.store "Dashboard", ""
# app/views/setup/index.html.erb
2 l.store "Welcome", ""
2 l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Typo will take care of everything else", ""
# app/views/shared/_confirm.html.erb
2 l.store "Congratulation!", ""
2 l.store "You have successfully signed up", ""
2 l.store "<strong>Login:</strong> %s", ""
2 l.store "<strong>Password:</strong> %s", ""
2 l.store "Don't lose the mail sent at %s or you won't be able to login anymore", ""
2 l.store "See help text for this filter", "查看協助針對此篩選器"
2 l.store "Set iTunes metadata for this enclosure", "設定附件的iTunes metadata"
2 l.store "Setting for channel", "設定頻道"
2 l.store "Settings", "設定"
2 l.store "Show Help", "顯示協助"
2 l.store "Show this article", "秀出文章"
2 l.store "Show this category", "秀出分類"
2 l.store "Show this comment", "秀出評論"
2 l.store "Show this page", "秀出此頁"
2 l.store "Show this pattern", "秀出樣式"
2 l.store "Show this user", "顯示使用者"
2 l.store "Spam Protection", "垃圾郵件防護"
2 l.store "Spam protection", "防止垃圾郵件"
2 l.store "Statistics", "統計資訊"
2 l.store "String", "字串"
2 l.store "Subtitle", "副標題"
2 l.store "Summary", "概要"
2 l.store "System information", "系統資訊"
2 l.store "Text Filter Details", "本文篩選器細節"
2 l.store "Text Filters", "本文篩選器"
2 l.store "Textfilter", "文章篩選"
2 l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "當你決定藉iTunes metadata來發佈一個附件,以下行為會被當成預設的"
2 l.store "There are %d entries in the cache", "儲存體裡有全部的%d"
2 l.store "There are %d entries in the page cache", "有%d個項目在Cache中"
2 l.store "Things you can do", "你可以做的事"
2 l.store "This option let you choose between the simple admin interface or the complete one, displaying much more options and therefore more complicated to use. For advanced users only.", "只讓進階使用者選擇簡單或完整的界面,顯示更多更複雜的選項"
2 l.store "Toggle Extended Content", "切換擴增內容"
2 l.store "Type", "型態"
2 l.store "Typo admin", "Typo管理員"
2 l.store "Typo documentation", "Typo文件"
2 l.store "Update your profile or change your password", "請更新您的個人資料或者修改密碼"
2 l.store "Upload a new File", "上載一個新檔案"
2 l.store "Upload a new Resource", "上傳一個新的資源"
2 l.store "Uploaded", "上載"
2 l.store "User's articles", "使用者文章"
2 l.store "View", "查看"
2 l.store "View article on your blog", "在你的部落格查看文章"
2 l.store "View comment on your blog", " 查看評論"
2 l.store "View page on your blog", "在你的部落格查看頁面"
2 l.store "What can you do ?", "你可以做什麼?"
2 l.store "Which settings group would you like to edit", "你要修改哪一個設定群組?"
2 l.store "Write Page", "撰寫頁面"
2 l.store "Write Post", "寫部落格"
2 l.store "Write a Page", "編寫本頁"
2 l.store "Write an Article", "編寫文章"
2 l.store "XML Syndication", "XML簡易整合"
2 l.store "You are now logged out of the system", "您已經登出系統"
2 l.store "You can add it to the following categories", "你可以新增至以下分類中"
2 l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "你可以隨意地讓non-Ajax評論無效。如果Javascript是有效的,對於提交評論typo會使用ajax,所以non-Ajax的評論是因為使用者或spammper沒有使用Javascript。"
127 relevant lines.
90 lines covered and
37 lines missed.
2module ActionWebService # :nodoc:
# Action Web Service supports the following base types in a signature:
#
# [<tt>:int</tt>] Represents an integer value, will be cast to an integer using <tt>Integer(value)</tt>
# [<tt>:string</tt>] Represents a string value, will be cast to an string using the <tt>to_s</tt> method on an object
# [<tt>:base64</tt>] Represents a Base 64 value, will contain the binary bytes of a Base 64 value sent by the caller
# [<tt>:bool</tt>] Represents a boolean value, whatever is passed will be cast to boolean (<tt>true</tt>, '1', 'true', 'y', 'yes' are taken to represent true; <tt>false</tt>, '0', 'false', 'n', 'no' and <tt>nil</tt> represent false)
# [<tt>:float</tt>] Represents a floating point value, will be cast to a float using <tt>Float(value)</tt>
# [<tt>:time</tt>] Represents a timestamp, will be cast to a <tt>Time</tt> object
# [<tt>:datetime</tt>] Represents a timestamp, will be cast to a <tt>DateTime</tt> object
# [<tt>:date</tt>] Represents a date, will be cast to a <tt>Date</tt> object
#
# For structured types, you'll need to pass in the Class objects of
# ActionWebService::Struct and ActiveRecord::Base derivatives.
2 module SignatureTypes
2 def canonical_signature(signature) # :nodoc:
76 return nil if signature.nil?
76 unless signature.is_a?(Array)
raise(ActionWebServiceError, "Expected signature to be an Array")
end
76 i = -1
242 signature.map{ |spec| canonical_signature_entry(spec, i += 1) }
api = @controller.web_service_object(service_name.to_sym).class.web_service_api
end
protocol.register_api(api)
method = api.api_methods[api_method_name.to_sym]
raise ArgumentError, "wrong number of arguments for rpc call (#{args.length} for #{method.expects.length})" if method && method.expects && args.length != method.expects.length
2 unless defined?(Keeper) # Something in rails double require this module. Prevent that to keep @@registered integrity
2 class Keeper
2 KINDS = [:avatar, :textfilter]
2 @@registered = {}
2 class << self
2 def available_plugins(kind = nil)
return @@registered.inspect unless kind
raise ArgumentError.new "#{kind} is not part of available plugins targets (#{KINDS.map(&:to_s).join(',')})" unless KINDS.include?(kind)
@@registered ? @@registered[kind] : nil
end
2 def register(klass)
2 raise ArgumentError.new "#{klass.kind.to_s} is not part of available plugins targets (#{KINDS.map(&:to_s).join(',')})" unless KINDS.include?(klass.kind)
2 @@registered[klass.kind] ||= []
2 @@registered[klass.kind] << klass
2 Rails.logger.debug("TypoPlugins: just registered plugin #{@@registered[klass.kind]} for #{klass.kind.inspect} target.")
2 @@registered[klass.kind]
end
end
2 private
2 def initialize
raise 'No instance allowed.'
end
end
end # Defined
2 class Base
2 class << self
2 attr_accessor :name
2 attr_accessor :description
2 attr_reader :registered
2 def kind
:void
end
end # << self
2 def initialize(h = {})
h = h.dup
kind = h.delete(:kind)
raise ArgumentError.new "#{kind} is not part of available plugins targets (#{KINDS.map(&:to_s).join(',')})" unless KINDS.include?(kind)
@kind = kind
raise ArgumentError.new "Too many keys in TypoPlugins::Base hash: I don't know what to do with your remainder: #{h.inspect}" unless h.empty?
end
end
end
lib/typo_version.rb
100.0 % covered
4 relevant lines.
4 lines covered and
0 lines missed.
resp, data = http.post(path, data, STANDARD_HEADERS)
@verifiedKey = (data == "valid")
end
# Returns <tt>true</tt> if the API key has been verified, <tt>false</tt> otherwise
2 def hasVerifiedKey()
return @verifiedKey
end
# Internal call to Akismet. Prepares the data for posting to the Akismet service.
#
# akismet_function
# The Akismet function that should be called
# user_ip (required)
# IP address of the comment submitter.
# user_agent (required)
# User agent information.
# referrer (note spelling)
# The content of the HTTP_REFERER header should be sent here.
# permalink
# The permanent location of the entry the comment was submitted to.
# comment_type
# May be blank, comment, trackback, pingback, or a made up value like "registration".
# comment_author
# Submitted name with the comment
# comment_author_email
# Submitted email address
# comment_author_url
# Commenter URL.
# comment_content
# The content that was submitted.
# Other server enviroment variables
# In PHP there is an array of enviroment variables called $_SERVER which contains information about the web server itself as well as a key/value for every HTTP header sent with the request. This data is highly useful to Akismet as how the submited content interacts with the server can be very telling, so please include as much information as possible.
resp, data = http.post(path, data, STANDARD_HEADERS)
unless data == 'true' or data == 'false' or data == ''
STDERR.puts "AKISMET error: #{data}"
end
result = (data == "true" or data == '')
end
rescue => err
STDERR.puts "AKISMET exception: #{err}"
end
return result
end
2 protected :callAkismet
# This is basically the core of everything. This call takes a number of arguments and characteristics about the submitted content and then returns a thumbs up or thumbs down. Almost everything is optional, but performance can drop dramatically if you exclude certain elements.
#
# user_ip (required)
# IP address of the comment submitter.
# user_agent (required)
# User agent information.
# referrer (note spelling)
# The content of the HTTP_REFERER header should be sent here.
# permalink
# The permanent location of the entry the comment was submitted to.
# comment_type
# May be blank, comment, trackback, pingback, or a made up value like "registration".
# comment_author
# Submitted name with the comment
# comment_author_email
# Submitted email address
# comment_author_url
# Commenter URL.
# comment_content
# The content that was submitted.
# Other server enviroment variables
# In PHP there is an array of enviroment variables called $_SERVER which contains information about the web server itself as well as a key/value for every HTTP header sent with the request. This data is highly useful to Akismet as how the submited content interacts with the server can be very telling, so please include as much information as possible.
2 def commentCheck(options = {})
return callAkismet('comment-check', options)
end
# This call is for submitting comments that weren't marked as spam but should have been. It takes identical arguments as comment check.
# The call parameters are the same as for the #commentCheck method.
2 def submitSpam(options = {})
callAkismet('submit-spam', options)
end
# This call is intended for the marking of false positives, things that were incorrectly marked as spam. It takes identical arguments as comment check and submit spam.
# The call parameters are the same as for the #commentCheck method.
2 setting :count, 10, :label => 'Number of Months'
2 attr_accessor :archives
2 def self.date_func
@date_func ||=
begin
if Content.connection.kind_of?(ActiveRecord::ConnectionAdapters::SQLiteAdapter)
"strftime('%Y', published_at) as year, strftime('%m', published_at) as month"
else
"extract(year from published_at) as year,extract(month from published_at) as month"
end
rescue NameError
"extract(year from published_at) as year,extract(month from published_at) as month"
end
end
2 def parse_request(contents, params)
# The original query that was here instantiated every article and every
# tag, and then sorted through them just to do a 'group by date'.
# Unfortunately, there's no universally-supported way to do this
# across all three of our supported DBs. So, we resort to a bit of
# DB-specific code.
date_func = self.class.date_func
article_counts = Content.find_by_sql(["select count(*) as count, #{date_func} from contents where type='Article' and published = ? and published_at < ? group by year,month order by year desc,month desc limit ? ",true,Time.now,count.to_i])
71 relevant lines.
44 lines covered and
27 lines missed.
# Various helpers available for use in your view
2module CalendarDateSelect::FormHelpers
# Similar to text_field_tag, but adds a calendar picker, naturally.
#
# == Arguments
#
# +name+ - the html name of the tag
# +value+ - When specified as a string, uses value verbatim. When Date, DateTime, Time, it converts it to a string basd off the format set by CalendarDateSelect#format=
# +options+ - ...
#
# == Options
#
# === :embedded
#
# Put the calendar straight into the form, rather than using a popup type of form.
# Use a hidden element instead of a text box for a pop up calendar. Not compatible with :embedded => true. You'll probably want to use an onchange callback to do something with the value.
# Forces the user to use the popup calendar by making it's text-box read-only and causing calendar_date_select to override it's default behavior of not allowing selection of a date on a target element that is read-only.
# All callbacks are executed within the context of the target input element. If you'd like to access the CalendarDateSelect object itself, you can access it via "this.calendar_date_select".
#
# For example:
#
# <%= calendar_date_select_tag "event_demo", "", :after_navigate => "alert('The current selected month is ' + this.calendar_date_select.selected_date.getMonth());" ,
2 def calendar_date_select_tag( name, value = nil, options = {})
# Similar to the difference between +text_field_tag+ and +text_field+, this method behaves like +text_field+
#
# It receives the same options as +calendar_date_select_tag+. Need for time selection is automatically detected by checking the corresponding column meta information of Model#columns_hash
The first will produce an `<img>` tag showing image number 31367273 from Flickr using the thumbnail image size. The image will be linked to the original image file from Flickr. When the link is clicked, the larger picture will be overlaid
on top of the existing page instead of taking you over to the Flickr site.
The second will do the same but use the `src` URL as the large picture and the `thumbsrc` URL as the thumbnail image.
To understand what this looks like, have a peek at Lokesh Dhakar's
comment block attached if a description has been attached to the picture in Flickr or the caption attribute is used.
For theme writers, the link is enclosed in a div tag with a "lightboxplugin"
class. Because this filter requires javascript and css include files, it
will only work with themes using the `<%= page_header %>` convenience function
in their layouts. As of this writing only Azure does this.
This macro takes a number of parameters:
Flickr attributes:
* **img** The Flickr image ID of the picture that you wish to use. This shows up in the URL whenever
you're viewing a picture in Flickr; for example, the image ID for <http://flickr.com/photos/scottlaird/31367273>
is 31367273.
* **thumbsize** The image size that you'd like to display. Typically you would use square, thumbnail or small. Options are:
* square (75x75)
* thumbnail (maximum size 100 pixels)
* small (maximum size 240 pixels)
* medium (maximum size 500 pixels)
* large (maximum size 1024 pixels)
* original
* **displaysize** The image size for the lightbox overlay shown when the user clicks the thumbnail. Options are the same as for thumbsize, but typically you would use medium or large. If your image files are quite large on Flickr you probably want to avoid using original.
Direct URL attributes:
* **src** The URL to the picture you wish to use.
* **thumbsrc** The URL to the thumbnail you would like to use. If this is not provided, the original picture will be used with the width and height properties of the `<img>` tag set to 100x100.
Common attributes:
* **style** This is passed through to the enclosing `<div>` that this macro generates. To float the
image on the right, use `style="float:right"`.
* **caption** The caption displayed below the image. By default, this is Flickr's description of the image.
to disable, use `caption=""`.
* **title** The tooltip title associated with the image. Defaults to Flickr's image title.
* **alt** The alt text associated with the image. By default, this is the same as the title.
# Upload progress uses the session options defined in
# ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS. If you are passing
# custom session options to your dispatcher then please follow the
# "recommended way to change session options":http://wiki.rubyonrails.com/rails/show/HowtoChangeSessionOptions
#
# === Update frequency
#
# During an upload, the progress will be written to the session every 2
# seconds. This prevents excessive writes yet maintains a decent picture of
# the upload progress for larger files.
#
# User interfaces that update more often that every 2 seconds will display the same results.
# Consider this update frequency when designing your progress polling.
#
2require 'cgi'
2class CGI #:nodoc:
2 class ProgressIO < SimpleDelegator #:nodoc:
2 MIN_SAVE_INTERVAL = 1.0 # Number of seconds between session saves
2 attr_reader :progress, :session
2 def initialize(orig_io, progress, session)
@session = session
@progress = progress
@start_time = Time.now
@last_save_time = @start_time
save_progress
super(orig_io)
end
2 def read(*args)
data = __getobj__.read(*args)
if data and data.size > 0
now = Time.now
elapsed = now - @start_time
progress.update!(data.size, elapsed)
if now - @last_save_time > MIN_SAVE_INTERVAL
save_progress
@last_save_time = now
end
else
ActionController::Base.logger.debug("CGI::ProgressIO#read returns nothing when it should return nil if IO is finished: [#{args.inspect}], a cancelled upload or old FCGI bindings. Resetting the upload progress")
progress.reset!
save_progress
end
data
end
2 def save_progress
@session.update
end
2 def finish
@session.update
ActionController::Base.logger.debug("Finished processing multipart upload in #{@progress.elapsed_seconds.to_s}s")
end
end
2 module QueryExtension #:nodoc:
# Need to do lazy aliasing on the instance that we are extending because of the way QueryExtension
# gets included for each instance of the CGI object rather than on a module level. This method is a
# bit obtrusive because we are overriding CGI::QueryExtension::extended which could be used in the
# future. Need to research a better method
2 def self.extended(obj)
obj.instance_eval do
# unless defined? will prevent clobbering the progress IO on multiple extensions
alias :stdinput_without_progress :stdinput unless defined? stdinput_without_progress
alias :stdinput :stdinput_with_progress
end
end
2 def stdinput_with_progress
@stdin_with_progress or stdinput_without_progress
end
2 private
# Bootstrapped on UploadProgress::upload_status_for
# * When the upload progress is enabled by you will find something the following lines:
# * "Multipart upload with progress (id: 1, size: 85464)"
# * "Finished processing multipart upload in 0.363729s"
# * If you are properly running multiple FCGI processes, then you will see multiple entries for rendering the "upload_status" action before the "Finish processing..." log entry. This is a *good thing* :)
#
2 module ClassMethods
# Creates an +after_filter+ which will call +finish_upload_status+
# creating the document that will be loaded into the hidden IFRAME, terminating
# the status polling forms created with +form_with_upload_progress+.
#
# Also defines an action +upload_status+ or a action name passed as
# the <tt>:status</tt> option. This status action must match the one expected
# == CSS Styling of the status text and progress bar
#
# See +upload_status_text_tag+ and +upload_status_progress_bar_tag+ for references
# of the IDs and CSS classes used.
#
# Default styling is included with the scaffolding CSS.
2 module UploadProgressHelper
2 unless const_defined? :FREQUENCY
# Default number of seconds between client updates
2 FREQUENCY = 2.0
# Factor to decrease the frequency when the +upload_status+ action returns the same results
# To disable update decay, set this constant to +false+
2 FREQUENCY_DECAY = 1.8
end
# Contains a hash of status messages used for localization of
# +upload_progress_status+ and +upload_progress_text+. Each string is
# evaluated in the helper method context so you can include your own
# calculations and string iterpolations.
#
# The following keys are defined:
#
# <tt>:begin</tt>:: Displayed before the first byte is received on the server
# <tt>:update</tt>:: Contains a human representation of the upload progress
# <tt>:finish</tt>:: Displayed when the file upload is complete, before the action has completed. If you are performing extra activity in your action such as processing of the upload, then inform the user of what you are doing by setting +upload_progress.message+
#
2 @@default_messages = {
:begin => '"Upload starting..."',
:update => '"#{human_size(upload_progress.received_bytes)} of #{human_size(upload_progress.total_bytes)} at #{human_size(upload_progress.bitrate)}/s; #{distance_of_time_in_words(0,upload_progress.remaining_seconds,true)} remaining"',